xref: /dragonfly/lib/libc/gen/siglist.c (revision 0db87cb7)
1 /*
2  * Copyright (c) 1983, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by the University of
16  *	California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * @(#)siglist.c	8.1 (Berkeley) 6/4/93
34  */
35 
36 #include <signal.h>
37 
38 const char *const sys_signame[NSIG] = {
39 	"Signal 0",
40 	"hup",				/* SIGHUP */
41 	"int",				/* SIGINT */
42 	"quit",				/* SIGQUIT */
43 	"ill",				/* SIGILL */
44 	"trap",				/* SIGTRAP */
45 	"abrt",				/* SIGABRT */
46 	"emt",				/* SIGEMT */
47 	"fpe",				/* SIGFPE */
48 	"kill",				/* SIGKILL */
49 	"bus",				/* SIGBUS */
50 	"segv",				/* SIGSEGV */
51 	"sys",				/* SIGSYS */
52 	"pipe",				/* SIGPIPE */
53 	"alrm",				/* SIGALRM */
54 	"term",				/* SIGTERM */
55 	"urg",				/* SIGURG */
56 	"stop",				/* SIGSTOP */
57 	"tstp",				/* SIGTSTP */
58 	"cont",				/* SIGCONT */
59 	"chld",				/* SIGCHLD */
60 	"ttin",				/* SIGTTIN */
61 	"ttou",				/* SIGTTOU */
62 	"io",				/* SIGIO */
63 	"xcpu",				/* SIGXCPU */
64 	"xfsz",				/* SIGXFSZ */
65 	"vtalrm",			/* SIGVTALRM */
66 	"prof",				/* SIGPROF */
67 	"winch",			/* SIGWINCH */
68 	"info",				/* SIGINFO */
69 	"usr1",				/* SIGUSR1 */
70 	"usr2",				/* SIGUSR2 */
71 
72 	/* 32-63 */
73 
74 	"thrd",				/* 32 */
75 	"ckpt",				/* 33 */
76 	"ckptx",			/* 34 */
77 	"Signal35",			/* 35 */
78 	"Signal36",			/* 36 */
79 	"Signal37",			/* 37 */
80 	"Signal38",			/* 38 */
81 	"Signal39",			/* 39 */
82 	"Signal40",			/* 40 */
83 	"Signal41",			/* 41 */
84 	"Signal42",			/* 42 */
85 	"Signal43",			/* 43 */
86 	"Signal44",			/* 44 */
87 	"Signal45",			/* 45 */
88 	"Signal46",			/* 46 */
89 	"Signal47",			/* 47 */
90 	"Signal48",			/* 48 */
91 	"Signal49",			/* 49 */
92 	"Signal50",			/* 50 */
93 	"Signal51",			/* 51 */
94 	"Signal52",			/* 52 */
95 	"Signal53",			/* 53 */
96 	"Signal54",			/* 54 */
97 	"Signal55",			/* 55 */
98 	"Signal56",			/* 56 */
99 	"Signal57",			/* 57 */
100 	"Signal58",			/* 58 */
101 	"Signal59",			/* 59 */
102 	"Signal60",			/* 60 */
103 	"Signal61",			/* 61 */
104 	"Signal62",			/* 62 */
105 	"Signal63"			/* 63 */
106 };
107 
108 const char *const sys_siglist[NSIG] = {
109 	"Signal 0",
110 	"Hangup",			/* SIGHUP */
111 	"Interrupt",			/* SIGINT */
112 	"Quit",				/* SIGQUIT */
113 	"Illegal instruction",		/* SIGILL */
114 	"Trace/BPT trap",		/* SIGTRAP */
115 	"Abort trap",			/* SIGABRT */
116 	"EMT trap",			/* SIGEMT */
117 	"Floating point exception",	/* SIGFPE */
118 	"Killed",			/* SIGKILL */
119 	"Bus error",			/* SIGBUS */
120 	"Segmentation fault",		/* SIGSEGV */
121 	"Bad system call",		/* SIGSYS */
122 	"Broken pipe",			/* SIGPIPE */
123 	"Alarm clock",			/* SIGALRM */
124 	"Terminated",			/* SIGTERM */
125 	"Urgent I/O condition",		/* SIGURG */
126 	"Suspended (signal)",		/* SIGSTOP */
127 	"Suspended",			/* SIGTSTP */
128 	"Continued",			/* SIGCONT */
129 	"Child exited",			/* SIGCHLD */
130 	"Stopped (tty input)",		/* SIGTTIN */
131 	"Stopped (tty output)",		/* SIGTTOU */
132 	"I/O possible",			/* SIGIO */
133 	"Cputime limit exceeded",	/* SIGXCPU */
134 	"Filesize limit exceeded",	/* SIGXFSZ */
135 	"Virtual timer expired",	/* SIGVTALRM */
136 	"Profiling timer expired",	/* SIGPROF */
137 	"Window size changes",		/* SIGWINCH */
138 	"Information request",		/* SIGINFO */
139 	"User defined signal 1",	/* SIGUSR1 */
140 	"User defined signal 2",	/* SIGUSR2 */
141 
142 	/* 32-63 */
143 
144 	"Thread Scheduler",		/* SIGTHR */
145 	"CheckPoint",			/* SIGCKPT */
146 	"CheckPointExit",		/* SIGCKPTEXIT */
147 	"Signal35",			/* 35 */
148 	"Signal36",			/* 36 */
149 	"Signal37",			/* 37 */
150 	"Signal38",			/* 38 */
151 	"Signal39",			/* 39 */
152 	"Signal40",			/* 40 */
153 	"Signal41",			/* 41 */
154 	"Signal42",			/* 42 */
155 	"Signal43",			/* 43 */
156 	"Signal44",			/* 44 */
157 	"Signal45",			/* 45 */
158 	"Signal46",			/* 46 */
159 	"Signal47",			/* 47 */
160 	"Signal48",			/* 48 */
161 	"Signal49",			/* 49 */
162 	"Signal50",			/* 50 */
163 	"Signal51",			/* 51 */
164 	"Signal52",			/* 52 */
165 	"Signal53",			/* 53 */
166 	"Signal54",			/* 54 */
167 	"Signal55",			/* 55 */
168 	"Signal56",			/* 56 */
169 	"Signal57",			/* 57 */
170 	"Signal58",			/* 58 */
171 	"Signal59",			/* 59 */
172 	"Signal60",			/* 60 */
173 	"Signal61",			/* 61 */
174 	"Signal62",			/* 62 */
175 	"Signal63"			/* 63 */
176 };
177 const int sys_nsig = sizeof(sys_siglist) / sizeof(sys_siglist[0]);
178