Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ignoredNote (0.14 sec)

  1. src/runtime/net_plan9.go

    	getg().m.ignoreHangup = true
    }
    
    //go:linkname runtime_unignoreHangup internal/poll.runtime_unignoreHangup
    func runtime_unignoreHangup(sig string) {
    	getg().m.ignoreHangup = false
    }
    
    func ignoredNote(note *byte) bool {
    	if note == nil {
    		return false
    	}
    	if gostringnocopy(note) != "hangup" {
    		return false
    	}
    	return getg().m.ignoreHangup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 18:36:28 UTC 2017
    - 645 bytes
    - Viewed (0)
  2. src/runtime/os3_plan9.go

    				c.setsp(sp)
    			}
    		}
    		if usesLR {
    			c.setpc(abi.FuncPCABI0(sigpanictramp))
    		} else {
    			c.setpc(abi.FuncPCABI0(sigpanic0))
    		}
    		return _NCONT
    	}
    	if flags&_SigNotify != 0 {
    		if ignoredNote(note) {
    			return _NCONT
    		}
    		if sendNote(note) {
    			return _NCONT
    		}
    	}
    	if flags&_SigKill != 0 {
    		goto Exit
    	}
    	if flags&_SigThrow == 0 {
    		return _NCONT
    	}
    Throw:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top