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