const runtime._SigNotify
27 uses
runtime (current package)
runtime2.go#L810: _SigNotify = 1 << iota // let signal.Notify have signal, even if from kernel
signal_darwin.go#L9: /* 1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
signal_darwin.go#L10: /* 2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
signal_darwin.go#L11: /* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
signal_darwin.go#L14: /* 6 */ {_SigNotify + _SigThrow, "SIGABRT: abort"},
signal_darwin.go#L21: /* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
signal_darwin.go#L22: /* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
signal_darwin.go#L23: /* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
signal_darwin.go#L24: /* 16 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
signal_darwin.go#L26: /* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
signal_darwin.go#L27: /* 19 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue after stop"},
signal_darwin.go#L28: /* 20 */ {_SigNotify + _SigUnblock + _SigIgn, "SIGCHLD: child status has changed"},
signal_darwin.go#L29: /* 21 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTTIN: background read from tty"},
signal_darwin.go#L30: /* 22 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTTOU: background write to tty"},
signal_darwin.go#L31: /* 23 */ {_SigNotify + _SigIgn, "SIGIO: i/o now possible"},
signal_darwin.go#L32: /* 24 */ {_SigNotify, "SIGXCPU: cpu limit exceeded"},
signal_darwin.go#L33: /* 25 */ {_SigNotify, "SIGXFSZ: file size limit exceeded"},
signal_darwin.go#L34: /* 26 */ {_SigNotify, "SIGVTALRM: virtual alarm clock"},
signal_darwin.go#L35: /* 27 */ {_SigNotify + _SigUnblock, "SIGPROF: profiling alarm clock"},
signal_darwin.go#L36: /* 28 */ {_SigNotify + _SigIgn, "SIGWINCH: window size change"},
signal_darwin.go#L37: /* 29 */ {_SigNotify + _SigIgn, "SIGINFO: status request from keyboard"},
signal_darwin.go#L38: /* 30 */ {_SigNotify, "SIGUSR1: user-defined signal 1"},
signal_darwin.go#L39: /* 31 */ {_SigNotify, "SIGUSR2: user-defined signal 2"},
signal_unix.go#L190: if t.flags&_SigNotify != 0 {
signal_unix.go#L215: if t.flags&_SigNotify != 0 {
signal_unix.go#L244: if t.flags&_SigNotify != 0 {
signal_unix.go#L593: if c.sigcode() == _SI_USER || flags&_SigNotify != 0 {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |