Source file
src/runtime/sigtab_linux_generic.go
1
2
3
4
5
6
7 package runtime
8
9 var sigtable = [...]sigTabT{
10 {0, "SIGNONE: no trap"},
11 {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
12 {_SigNotify + _SigKill, "SIGINT: interrupt"},
13 {_SigNotify + _SigThrow, "SIGQUIT: quit"},
14 {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
15 {_SigThrow + _SigUnblock, "SIGTRAP: trace trap"},
16 {_SigNotify + _SigThrow, "SIGABRT: abort"},
17 {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
18 {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
19 {0, "SIGKILL: kill"},
20 {_SigNotify, "SIGUSR1: user-defined signal 1"},
21 {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
22 {_SigNotify, "SIGUSR2: user-defined signal 2"},
23 {_SigNotify, "SIGPIPE: write to broken pipe"},
24 {_SigNotify, "SIGALRM: alarm clock"},
25 {_SigNotify + _SigKill, "SIGTERM: termination"},
26 {_SigThrow + _SigUnblock, "SIGSTKFLT: stack fault"},
27 {_SigNotify + _SigUnblock + _SigIgn, "SIGCHLD: child status has changed"},
28 {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue"},
29 {0, "SIGSTOP: stop, unblockable"},
30 {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
31 {_SigNotify + _SigDefault + _SigIgn, "SIGTTIN: background read from tty"},
32 {_SigNotify + _SigDefault + _SigIgn, "SIGTTOU: background write to tty"},
33 {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
34 {_SigNotify, "SIGXCPU: cpu limit exceeded"},
35 {_SigNotify, "SIGXFSZ: file size limit exceeded"},
36 {_SigNotify, "SIGVTALRM: virtual alarm clock"},
37 {_SigNotify + _SigUnblock, "SIGPROF: profiling alarm clock"},
38 {_SigNotify + _SigIgn, "SIGWINCH: window size change"},
39 {_SigNotify, "SIGIO: i/o now possible"},
40 {_SigNotify, "SIGPWR: power failure restart"},
41 {_SigThrow, "SIGSYS: bad system call"},
42 {_SigSetStack + _SigUnblock, "signal 32"},
43 {_SigSetStack + _SigUnblock, "signal 33"},
44 {_SigSetStack + _SigUnblock, "signal 34"},
45 {_SigNotify, "signal 35"},
46 {_SigNotify, "signal 36"},
47 {_SigNotify, "signal 37"},
48 {_SigNotify, "signal 38"},
49 {_SigNotify, "signal 39"},
50 {_SigNotify, "signal 40"},
51 {_SigNotify, "signal 41"},
52 {_SigNotify, "signal 42"},
53 {_SigNotify, "signal 43"},
54 {_SigNotify, "signal 44"},
55 {_SigNotify, "signal 45"},
56 {_SigNotify, "signal 46"},
57 {_SigNotify, "signal 47"},
58 {_SigNotify, "signal 48"},
59 {_SigNotify, "signal 49"},
60 {_SigNotify, "signal 50"},
61 {_SigNotify, "signal 51"},
62 {_SigNotify, "signal 52"},
63 {_SigNotify, "signal 53"},
64 {_SigNotify, "signal 54"},
65 {_SigNotify, "signal 55"},
66 {_SigNotify, "signal 56"},
67 {_SigNotify, "signal 57"},
68 {_SigNotify, "signal 58"},
69 {_SigNotify, "signal 59"},
70 {_SigNotify, "signal 60"},
71 {_SigNotify, "signal 61"},
72 {_SigNotify, "signal 62"},
73 {_SigNotify, "signal 63"},
74 {_SigNotify, "signal 64"},
75 }
76
View as plain text