reduce size of devname entry
[unix-history] / usr / src / lib / libc / gen / siglist.c
CommitLineData
bb0cfa24 1/*
3cee8e9d
KB
2 * Copyright (c) 1983 Regents of the University of California.
3 * All rights reserved.
4 *
269a7923 5 * %sccs.include.redist.c%
bb0cfa24
DF
6 */
7
2ce81398 8#if defined(LIBC_SCCS) && !defined(lint)
269a7923 9static char sccsid[] = "@(#)siglist.c 5.5 (Berkeley) %G%";
3cee8e9d 10#endif /* LIBC_SCCS and not lint */
5c9e5b54
SL
11
12#include <signal.h>
21c45276
SL
13
14char *sys_siglist[NSIG] = {
15 "Signal 0",
16 "Hangup", /* SIGHUP */
17 "Interrupt", /* SIGINT */
18 "Quit", /* SIGQUIT */
19 "Illegal instruction", /* SIGILL */
20 "Trace/BPT trap", /* SIGTRAP */
9de85070 21 "Abort trap", /* SIGABRT */
21c45276
SL
22 "EMT trap", /* SIGEMT */
23 "Floating point exception", /* SIGFPE */
24 "Killed", /* SIGKILL */
25 "Bus error", /* SIGBUS */
26 "Segmentation fault", /* SIGSEGV */
27 "Bad system call", /* SIGSYS */
28 "Broken pipe", /* SIGPIPE */
29 "Alarm clock", /* SIGALRM */
30 "Terminated", /* SIGTERM */
31 "Urgent I/O condition", /* SIGURG */
32 "Stopped (signal)", /* SIGSTOP */
33 "Stopped", /* SIGTSTP */
34 "Continued", /* SIGCONT */
35 "Child exited", /* SIGCHLD */
36 "Stopped (tty input)", /* SIGTTIN */
37 "Stopped (tty output)", /* SIGTTOU */
38 "I/O possible", /* SIGIO */
39 "Cputime limit exceeded", /* SIGXCPU */
40 "Filesize limit exceeded", /* SIGXFSZ */
41 "Virtual timer expired", /* SIGVTALRM */
42 "Profiling timer expired", /* SIGPROF */
ed147c30 43 "Window size changes", /* SIGWINCH */
9de85070 44 "Information request", /* SIGINFO */
ed147c30
KM
45 "User defined signal 1", /* SIGUSR1 */
46 "User defined signal 2" /* SIGUSR2 */
21c45276 47};