siglist.c revision 1574
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
34#if defined(LIBC_SCCS) && !defined(lint)
35static char sccsid[] = "@(#)siglist.c	8.1 (Berkeley) 6/4/93";
36#endif /* LIBC_SCCS and not lint */
37
38#include <sys/cdefs.h>
39#include <signal.h>
40
41const char *const sys_signame[NSIG] = {
42	"Signal 0",
43	"hup",				/* SIGHUP */
44	"int",				/* SIGINT */
45	"quit",				/* SIGQUIT */
46	"ill",				/* SIGILL */
47	"trap",				/* SIGTRAP */
48	"abrt",				/* SIGABRT */
49	"emt",				/* SIGEMT */
50	"fpe",				/* SIGFPE */
51	"kill",				/* SIGKILL */
52	"bus",				/* SIGBUS */
53	"segv",				/* SIGSEGV */
54	"sys",				/* SIGSYS */
55	"pipe",				/* SIGPIPE */
56	"alrm",				/* SIGALRM */
57	"term",				/* SIGTERM */
58	"urg",				/* SIGURG */
59	"stop",				/* SIGSTOP */
60	"tstp",				/* SIGTSTP */
61	"cont",				/* SIGCONT */
62	"chld",				/* SIGCHLD */
63	"ttin",				/* SIGTTIN */
64	"ttou",				/* SIGTTOU */
65	"io",				/* SIGIO */
66	"xcpu",				/* SIGXCPU */
67	"xfsz",				/* SIGXFSZ */
68	"vtalrm",			/* SIGVTALRM */
69	"prof",				/* SIGPROF */
70	"winch",			/* SIGWINCH */
71	"info",				/* SIGINFO */
72	"usr1",				/* SIGUSR1 */
73	"usr2",				/* SIGUSR2 */
74};
75
76const char *const sys_siglist[NSIG] = {
77	"Signal 0",
78	"Hangup",			/* SIGHUP */
79	"Interrupt",			/* SIGINT */
80	"Quit",				/* SIGQUIT */
81	"Illegal instruction",		/* SIGILL */
82	"Trace/BPT trap",		/* SIGTRAP */
83	"Abort trap",			/* SIGABRT */
84	"EMT trap",			/* SIGEMT */
85	"Floating point exception",	/* SIGFPE */
86	"Killed",			/* SIGKILL */
87	"Bus error",			/* SIGBUS */
88	"Segmentation fault",		/* SIGSEGV */
89	"Bad system call",		/* SIGSYS */
90	"Broken pipe",			/* SIGPIPE */
91	"Alarm clock",			/* SIGALRM */
92	"Terminated",			/* SIGTERM */
93	"Urgent I/O condition",		/* SIGURG */
94	"Suspended (signal)",		/* SIGSTOP */
95	"Suspended",			/* SIGTSTP */
96	"Continued",			/* SIGCONT */
97	"Child exited",			/* SIGCHLD */
98	"Stopped (tty input)",		/* SIGTTIN */
99	"Stopped (tty output)",		/* SIGTTOU */
100	"I/O possible",			/* SIGIO */
101	"Cputime limit exceeded",	/* SIGXCPU */
102	"Filesize limit exceeded",	/* SIGXFSZ */
103	"Virtual timer expired",	/* SIGVTALRM */
104	"Profiling timer expired",	/* SIGPROF */
105	"Window size changes",		/* SIGWINCH */
106	"Information request",		/* SIGINFO */
107	"User defined signal 1",	/* SIGUSR1 */
108	"User defined signal 2"		/* SIGUSR2 */
109};
110