Lines Matching refs:ADDSIGNAL
29 #define ADDSIGNAL(S, SUPPRESS, STOP, NOTIFY, DESCRIPTION) \ in Reset() macro
32 ADDSIGNAL(HUP, false, true, true, "hangup"); in Reset()
33 ADDSIGNAL(INT, true, true, true, "interrupt"); in Reset()
34 ADDSIGNAL(QUIT, false, true, true, "quit"); in Reset()
35 ADDSIGNAL(ILL, false, true, true, "illegal instruction"); in Reset()
36 ADDSIGNAL(TRAP, true, true, true, "trace trap (not reset when caught)"); in Reset()
37 ADDSIGNAL(ABRT, false, true, true, "abort"); in Reset()
38 ADDSIGNAL(IOT, false, true, true, "abort"); in Reset()
39 ADDSIGNAL(BUS, false, true, true, "bus error"); in Reset()
40 ADDSIGNAL(FPE, false, true, true, "floating point exception"); in Reset()
41 ADDSIGNAL(KILL, false, true, true, "kill"); in Reset()
42 ADDSIGNAL(USR1, false, true, true, "user defined signal 1"); in Reset()
43 ADDSIGNAL(SEGV, false, true, true, "segmentation violation"); in Reset()
44 ADDSIGNAL(USR2, false, true, true, "user defined signal 2"); in Reset()
45 ADDSIGNAL(PIPE, false, true, true, "write to pipe with reading end closed"); in Reset()
46 ADDSIGNAL(ALRM, false, false, true, "alarm"); in Reset()
47 ADDSIGNAL(TERM, false, true, true, "termination requested"); in Reset()
48 ADDSIGNAL(STKFLT, false, true, true, "stack fault"); in Reset()
49 ADDSIGNAL(CHLD, false, false, true, "child process exit"); in Reset()
50 ADDSIGNAL(CONT, false, true, true, "process continue"); in Reset()
51 ADDSIGNAL(STOP, false, true, true, "process stop"); in Reset()
52 ADDSIGNAL(TSTP, false, true, true, "tty stop"); in Reset()
53 ADDSIGNAL(TTIN, false, true, true, "background tty read"); in Reset()
54 ADDSIGNAL(TTOU, false, true, true, "background tty write"); in Reset()
55 ADDSIGNAL(URG, false, true, true, "urgent data on socket"); in Reset()
56 ADDSIGNAL(XCPU, false, true, true, "CPU resource exceeded"); in Reset()
57 ADDSIGNAL(XFSZ, false, true, true, "file size limit exceeded"); in Reset()
58 ADDSIGNAL(VTALRM, false, true, true, "virtual alarm"); in Reset()
59 ADDSIGNAL(PROF, false, true, true, "profiling alarm"); in Reset()
60 ADDSIGNAL(WINCH, false, true, true, "window size change"); in Reset()
61 ADDSIGNAL(POLL, false, true, true, "pollable event"); in Reset()
62 ADDSIGNAL(IO, false, true, true, "input/output ready"); in Reset()
63 ADDSIGNAL(PWR, false, true, true, "power failure"); in Reset()
64 ADDSIGNAL(SYS, false, true, true, "invalid system call"); in Reset()
66 #undef ADDSIGNAL in Reset()