xref: /dragonfly/lib/libc/gen/siglist.c (revision a563ca70)
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  * $DragonFly: src/lib/libc/gen/siglist.c,v 1.3 2003/10/14 23:04:10 dillon Exp $
35  */
36 
37 #include <sys/cdefs.h>
38 #include <signal.h>
39 
40 const char *const sys_signame[NSIG] = {
41 	"Signal 0",
42 	"hup",				/* SIGHUP */
43 	"int",				/* SIGINT */
44 	"quit",				/* SIGQUIT */
45 	"ill",				/* SIGILL */
46 	"trap",				/* SIGTRAP */
47 	"abrt",				/* SIGABRT */
48 	"emt",				/* SIGEMT */
49 	"fpe",				/* SIGFPE */
50 	"kill",				/* SIGKILL */
51 	"bus",				/* SIGBUS */
52 	"segv",				/* SIGSEGV */
53 	"sys",				/* SIGSYS */
54 	"pipe",				/* SIGPIPE */
55 	"alrm",				/* SIGALRM */
56 	"term",				/* SIGTERM */
57 	"urg",				/* SIGURG */
58 	"stop",				/* SIGSTOP */
59 	"tstp",				/* SIGTSTP */
60 	"cont",				/* SIGCONT */
61 	"chld",				/* SIGCHLD */
62 	"ttin",				/* SIGTTIN */
63 	"ttou",				/* SIGTTOU */
64 	"io",				/* SIGIO */
65 	"xcpu",				/* SIGXCPU */
66 	"xfsz",				/* SIGXFSZ */
67 	"vtalrm",			/* SIGVTALRM */
68 	"prof",				/* SIGPROF */
69 	"winch",			/* SIGWINCH */
70 	"info",				/* SIGINFO */
71 	"usr1",				/* SIGUSR1 */
72 	"usr2",				/* SIGUSR2 */
73 
74 	/* 32-63 */
75 
76 	"thrd",				/* 32 */
77 	"ckpt",				/* 33 */
78 	"ckptx",			/* 34 */
79 	"Signal35",			/* 35 */
80 	"Signal36",			/* 36 */
81 	"Signal37",			/* 37 */
82 	"Signal38",			/* 38 */
83 	"Signal39",			/* 39 */
84 	"Signal40",			/* 40 */
85 	"Signal41",			/* 41 */
86 	"Signal42",			/* 42 */
87 	"Signal43",			/* 43 */
88 	"Signal44",			/* 44 */
89 	"Signal45",			/* 45 */
90 	"Signal46",			/* 46 */
91 	"Signal47",			/* 47 */
92 	"Signal48",			/* 48 */
93 	"Signal49",			/* 49 */
94 	"Signal50",			/* 50 */
95 	"Signal51",			/* 51 */
96 	"Signal52",			/* 52 */
97 	"Signal53",			/* 53 */
98 	"Signal54",			/* 54 */
99 	"Signal55",			/* 55 */
100 	"Signal56",			/* 56 */
101 	"Signal57",			/* 57 */
102 	"Signal58",			/* 58 */
103 	"Signal59",			/* 59 */
104 	"Signal60",			/* 60 */
105 	"Signal61",			/* 61 */
106 	"Signal62",			/* 62 */
107 	"Signal63"			/* 63 */
108 };
109 
110 const char *const sys_siglist[NSIG] = {
111 	"Signal 0",
112 	"Hangup",			/* SIGHUP */
113 	"Interrupt",			/* SIGINT */
114 	"Quit",				/* SIGQUIT */
115 	"Illegal instruction",		/* SIGILL */
116 	"Trace/BPT trap",		/* SIGTRAP */
117 	"Abort trap",			/* SIGABRT */
118 	"EMT trap",			/* SIGEMT */
119 	"Floating point exception",	/* SIGFPE */
120 	"Killed",			/* SIGKILL */
121 	"Bus error",			/* SIGBUS */
122 	"Segmentation fault",		/* SIGSEGV */
123 	"Bad system call",		/* SIGSYS */
124 	"Broken pipe",			/* SIGPIPE */
125 	"Alarm clock",			/* SIGALRM */
126 	"Terminated",			/* SIGTERM */
127 	"Urgent I/O condition",		/* SIGURG */
128 	"Suspended (signal)",		/* SIGSTOP */
129 	"Suspended",			/* SIGTSTP */
130 	"Continued",			/* SIGCONT */
131 	"Child exited",			/* SIGCHLD */
132 	"Stopped (tty input)",		/* SIGTTIN */
133 	"Stopped (tty output)",		/* SIGTTOU */
134 	"I/O possible",			/* SIGIO */
135 	"Cputime limit exceeded",	/* SIGXCPU */
136 	"Filesize limit exceeded",	/* SIGXFSZ */
137 	"Virtual timer expired",	/* SIGVTALRM */
138 	"Profiling timer expired",	/* SIGPROF */
139 	"Window size changes",		/* SIGWINCH */
140 	"Information request",		/* SIGINFO */
141 	"User defined signal 1",	/* SIGUSR1 */
142 	"User defined signal 2",	/* SIGUSR2 */
143 
144 	/* 32-63 */
145 
146 	"Thread Scheduler",		/* SIGTHR */
147 	"CheckPoint",			/* SIGCKPT */
148 	"CheckPointExit",		/* SIGCKPTEXIT */
149 	"Signal35",			/* 35 */
150 	"Signal36",			/* 36 */
151 	"Signal37",			/* 37 */
152 	"Signal38",			/* 38 */
153 	"Signal39",			/* 39 */
154 	"Signal40",			/* 40 */
155 	"Signal41",			/* 41 */
156 	"Signal42",			/* 42 */
157 	"Signal43",			/* 43 */
158 	"Signal44",			/* 44 */
159 	"Signal45",			/* 45 */
160 	"Signal46",			/* 46 */
161 	"Signal47",			/* 47 */
162 	"Signal48",			/* 48 */
163 	"Signal49",			/* 49 */
164 	"Signal50",			/* 50 */
165 	"Signal51",			/* 51 */
166 	"Signal52",			/* 52 */
167 	"Signal53",			/* 53 */
168 	"Signal54",			/* 54 */
169 	"Signal55",			/* 55 */
170 	"Signal56",			/* 56 */
171 	"Signal57",			/* 57 */
172 	"Signal58",			/* 58 */
173 	"Signal59",			/* 59 */
174 	"Signal60",			/* 60 */
175 	"Signal61",			/* 61 */
176 	"Signal62",			/* 62 */
177 	"Signal63"			/* 63 */
178 };
179 const int sys_nsig = sizeof(sys_siglist) / sizeof(sys_siglist[0]);
180