BSD 4_4_Lite1 release
[unix-history] / usr / src / contrib / nvi.1.14 / PORT / clib / siglist.c
CommitLineData
bb0cfa24 1/*
74155b62
KB
2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
3cee8e9d 4 *
ad787160
C
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.
bb0cfa24
DF
32 */
33
2ce81398 34#if defined(LIBC_SCCS) && !defined(lint)
ad787160 35static char sccsid[] = "@(#)siglist.c 8.1 (Berkeley) 6/4/93";
3cee8e9d 36#endif /* LIBC_SCCS and not lint */
5c9e5b54 37
8c56883f 38#include <sys/cdefs.h>
5c9e5b54 39#include <signal.h>
21c45276 40
d9d2488c 41const char *const sys_signame[NSIG] = {
93dfd5b9
KB
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
d9d2488c 76const char *const sys_siglist[NSIG] = {
21c45276
SL
77 "Signal 0",
78 "Hangup", /* SIGHUP */
79 "Interrupt", /* SIGINT */
80 "Quit", /* SIGQUIT */
81 "Illegal instruction", /* SIGILL */
82 "Trace/BPT trap", /* SIGTRAP */
9de85070 83 "Abort trap", /* SIGABRT */
21c45276
SL
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 */
93dfd5b9
KB
94 "Suspended (signal)", /* SIGSTOP */
95 "Suspended", /* SIGTSTP */
21c45276
SL
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 */
ed147c30 105 "Window size changes", /* SIGWINCH */
9de85070 106 "Information request", /* SIGINFO */
ed147c30
KM
107 "User defined signal 1", /* SIGUSR1 */
108 "User defined signal 2" /* SIGUSR2 */
21c45276 109};