Source file
src/runtime/signal_solaris.go
1
2
3
4
5 package runtime
6
7 var sigtable = [...]sigTabT{
8 {0, "SIGNONE: no trap"},
9 {_SigNotify + _SigKill, "SIGHUP: hangup"},
10 {_SigNotify + _SigKill, "SIGINT: interrupt (rubout)"},
11 {_SigNotify + _SigThrow, "SIGQUIT: quit (ASCII FS)"},
12 {_SigThrow + _SigUnblock, "SIGILL: illegal instruction (not reset when caught)"},
13 {_SigThrow + _SigUnblock, "SIGTRAP: trace trap (not reset when caught)"},
14 {_SigNotify + _SigThrow, "SIGABRT: used by abort, replace SIGIOT in the future"},
15 {_SigThrow, "SIGEMT: EMT instruction"},
16 {_SigPanic + _SigUnblock, "SIGFPE: floating point exception"},
17 {0, "SIGKILL: kill (cannot be caught or ignored)"},
18 {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
19 {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
20 {_SigThrow, "SIGSYS: bad argument to system call"},
21 {_SigNotify, "SIGPIPE: write on a pipe with no one to read it"},
22 {_SigNotify, "SIGALRM: alarm clock"},
23 {_SigNotify + _SigKill, "SIGTERM: software termination signal from kill"},
24 {_SigNotify, "SIGUSR1: user defined signal 1"},
25 {_SigNotify, "SIGUSR2: user defined signal 2"},
26 {_SigNotify + _SigUnblock + _SigIgn, "SIGCHLD: child status change alias (POSIX)"},
27 {_SigNotify, "SIGPWR: power-fail restart"},
28 {_SigNotify + _SigIgn, "SIGWINCH: window size change"},
29 {_SigNotify + _SigIgn, "SIGURG: urgent socket condition"},
30 {_SigNotify, "SIGPOLL: pollable event occurred"},
31 {0, "SIGSTOP: stop (cannot be caught or ignored)"},
32 {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: user stop requested from tty"},
33 {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: stopped process has been continued"},
34 {_SigNotify + _SigDefault + _SigIgn, "SIGTTIN: background tty read attempted"},
35 {_SigNotify + _SigDefault + _SigIgn, "SIGTTOU: background tty write attempted"},
36 {_SigNotify, "SIGVTALRM: virtual timer expired"},
37 {_SigNotify + _SigUnblock, "SIGPROF: profiling timer expired"},
38 {_SigNotify, "SIGXCPU: exceeded cpu limit"},
39 {_SigNotify, "SIGXFSZ: exceeded file size limit"},
40 {_SigNotify, "SIGWAITING: reserved signal no longer used by"},
41 {_SigNotify, "SIGLWP: reserved signal no longer used by"},
42 {_SigNotify, "SIGFREEZE: special signal used by CPR"},
43 {_SigNotify, "SIGTHAW: special signal used by CPR"},
44 {_SigSetStack + _SigUnblock, "SIGCANCEL: reserved signal for thread cancellation"},
45 {_SigNotify, "SIGLOST: resource lost (eg, record-lock lost)"},
46 {_SigNotify, "SIGXRES: resource control exceeded"},
47 {_SigNotify, "SIGJVM1: reserved signal for Java Virtual Machine"},
48 {_SigNotify, "SIGJVM2: reserved signal for Java Virtual Machine"},
49
50
51 {_SigNotify, "real time signal"},
52 {_SigNotify, "real time signal"},
53 {_SigNotify, "real time signal"},
54 {_SigNotify, "real time signal"},
55 {_SigNotify, "real time signal"},
56 {_SigNotify, "real time signal"},
57 {_SigNotify, "real time signal"},
58 {_SigNotify, "real time signal"},
59 {_SigNotify, "real time signal"},
60 {_SigNotify, "real time signal"},
61 {_SigNotify, "real time signal"},
62 {_SigNotify, "real time signal"},
63 {_SigNotify, "real time signal"},
64 {_SigNotify, "real time signal"},
65 {_SigNotify, "real time signal"},
66 {_SigNotify, "real time signal"},
67 {_SigNotify, "real time signal"},
68 {_SigNotify, "real time signal"},
69 {_SigNotify, "real time signal"},
70 {_SigNotify, "real time signal"},
71 {_SigNotify, "real time signal"},
72 {_SigNotify, "real time signal"},
73 {_SigNotify, "real time signal"},
74 {_SigNotify, "real time signal"},
75 {_SigNotify, "real time signal"},
76 {_SigNotify, "real time signal"},
77 {_SigNotify, "real time signal"},
78 {_SigNotify, "real time signal"},
79 {_SigNotify, "real time signal"},
80 {_SigNotify, "real time signal"},
81 {_SigNotify, "real time signal"},
82 {_SigNotify, "real time signal"},
83 }
84
View as plain text