Source file
src/runtime/sigtab_linux_mipsx.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 {_SigThrow, "SIGEMT"},
18 {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
19 {0, "SIGKILL: kill"},
20 {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
21 {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
22 {_SigThrow, "SIGSYS: bad system call"},
23 {_SigNotify, "SIGPIPE: write to broken pipe"},
24 {_SigNotify, "SIGALRM: alarm clock"},
25 {_SigNotify + _SigKill, "SIGTERM: termination"},
26 {_SigNotify, "SIGUSR1: user-defined signal 1"},
27 {_SigNotify, "SIGUSR2: user-defined signal 2"},
28 {_SigNotify + _SigUnblock + _SigIgn, "SIGCHLD: child status has changed"},
29 {_SigNotify, "SIGPWR: power failure restart"},
30 {_SigNotify + _SigIgn, "SIGWINCH: window size change"},
31 {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
32 {_SigNotify, "SIGIO: i/o now possible"},
33 {0, "SIGSTOP: stop, unblockable"},
34 {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
35 {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue"},
36 {_SigNotify + _SigDefault + _SigIgn, "SIGTTIN: background read from tty"},
37 {_SigNotify + _SigDefault + _SigIgn, "SIGTTOU: background write to tty"},
38 {_SigNotify, "SIGVTALRM: virtual alarm clock"},
39 {_SigNotify + _SigUnblock, "SIGPROF: profiling alarm clock"},
40 {_SigNotify, "SIGXCPU: cpu limit exceeded"},
41 {_SigNotify, "SIGXFSZ: file size limit exceeded"},
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 {_SigNotify, "signal 65"},
76 {_SigNotify, "signal 66"},
77 {_SigNotify, "signal 67"},
78 {_SigNotify, "signal 68"},
79 {_SigNotify, "signal 69"},
80 {_SigNotify, "signal 70"},
81 {_SigNotify, "signal 71"},
82 {_SigNotify, "signal 72"},
83 {_SigNotify, "signal 73"},
84 {_SigNotify, "signal 74"},
85 {_SigNotify, "signal 75"},
86 {_SigNotify, "signal 76"},
87 {_SigNotify, "signal 77"},
88 {_SigNotify, "signal 78"},
89 {_SigNotify, "signal 79"},
90 {_SigNotify, "signal 80"},
91 {_SigNotify, "signal 81"},
92 {_SigNotify, "signal 82"},
93 {_SigNotify, "signal 83"},
94 {_SigNotify, "signal 84"},
95 {_SigNotify, "signal 85"},
96 {_SigNotify, "signal 86"},
97 {_SigNotify, "signal 87"},
98 {_SigNotify, "signal 88"},
99 {_SigNotify, "signal 89"},
100 {_SigNotify, "signal 90"},
101 {_SigNotify, "signal 91"},
102 {_SigNotify, "signal 92"},
103 {_SigNotify, "signal 93"},
104 {_SigNotify, "signal 94"},
105 {_SigNotify, "signal 95"},
106 {_SigNotify, "signal 96"},
107 {_SigNotify, "signal 97"},
108 {_SigNotify, "signal 98"},
109 {_SigNotify, "signal 99"},
110 {_SigNotify, "signal 100"},
111 {_SigNotify, "signal 101"},
112 {_SigNotify, "signal 102"},
113 {_SigNotify, "signal 103"},
114 {_SigNotify, "signal 104"},
115 {_SigNotify, "signal 105"},
116 {_SigNotify, "signal 106"},
117 {_SigNotify, "signal 107"},
118 {_SigNotify, "signal 108"},
119 {_SigNotify, "signal 109"},
120 {_SigNotify, "signal 110"},
121 {_SigNotify, "signal 111"},
122 {_SigNotify, "signal 112"},
123 {_SigNotify, "signal 113"},
124 {_SigNotify, "signal 114"},
125 {_SigNotify, "signal 115"},
126 {_SigNotify, "signal 116"},
127 {_SigNotify, "signal 117"},
128 {_SigNotify, "signal 118"},
129 {_SigNotify, "signal 119"},
130 {_SigNotify, "signal 120"},
131 {_SigNotify, "signal 121"},
132 {_SigNotify, "signal 122"},
133 {_SigNotify, "signal 123"},
134 {_SigNotify, "signal 124"},
135 {_SigNotify, "signal 125"},
136 {_SigNotify, "signal 126"},
137 {_SigNotify, "signal 127"},
138 {_SigNotify, "signal 128"},
139 }
140
View as plain text