Lines Matching refs:addsig

28 addsig() {  function
41 addsig _SIGHUP '{_SigNotify + _SigKill, "SIGHUP: terminal line hangup"}'
42 addsig _SIGINT '{_SigNotify + _SigKill, "SIGINT: interrupt"}'
43 addsig _SIGQUIT '{_SigNotify + _SigThrow, "SIGQUIT: quit"}'
44 addsig _SIGILL '{_SigThrow + _SigUnblock, "SIGILL: illegal instruction"}'
45 addsig _SIGTRAP '{_SigThrow + _SigUnblock, "SIGTRAP: trace trap"}'
46 addsig _SIGABRT '{_SigNotify + _SigThrow, "SIGABRT: abort"}'
47 addsig _SIGBUS '{_SigPanic + _SigUnblock, "SIGBUS: bus error"}'
48 addsig _SIGFPE '{_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"}'
49 addsig _SIGKILL '{0, "SIGKILL: kill"}'
50 addsig _SIGUSR1 '{_SigNotify, "SIGUSR1: user-defined signal 1"}'
51 addsig _SIGSEGV '{_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"}'
52 addsig _SIGUSR2 '{_SigNotify, "SIGUSR2: user-defined signal 2"}'
53 addsig _SIGPIPE '{_SigNotify, "SIGPIPE: write to broken pipe"}'
54 addsig _SIGALRM '{_SigNotify, "SIGALRM: alarm clock"}'
55 addsig _SIGTERM '{_SigNotify + _SigKill, "SIGTERM: termination"}'
56 addsig _SIGCHLD '{_SigNotify + _SigUnblock, "SIGCHLD: child status has changed"}'
57 addsig _SIGCONT '{_SigNotify + _SigDefault, "SIGCONT: continue"}'
58 addsig _SIGSTOP '{0, "SIGSTOP: stop"}'
59 addsig _SIGTSTP '{_SigNotify + _SigDefault, "SIGTSTP: keyboard stop"}'
60 addsig _SIGTTIN '{_SigNotify + _SigDefault, "SIGTTIN: background read from tty"}'
61 addsig _SIGTTOU '{_SigNotify + _SigDefault, "SIGTTOU: background write to tty"}'
62 addsig _SIGURG '{_SigNotify, "SIGURG: urgent condition on socket"}'
63 addsig _SIGXCPU '{_SigNotify, "SIGXCPU: cpu limit exceeded"}'
64 addsig _SIGXFSZ '{_SigNotify, "SIGXFSZ: file size limit exceeded"}'
65 addsig _SIGVTALRM '{_SigNotify, "SIGVTALRM: virtual alarm clock"}'
66 addsig _SIGPROF '{_SigNotify + _SigUnblock, "SIGPROF: profiling alarm clock"}'
67 addsig _SIGWINCH '{_SigNotify, "SIGWINCH: window size change"}'
68 addsig _SIGSYS '{_SigThrow, "SIGSYS: bad system call"}'
75 addsig $1 "$2"