add db.1.85
[nvi.git] / db.1.85 / PORT / hpux.9.01 / local / hp_siglist.c
blobe65083bc9d5654b5e608359711da00ef3b568d63
1 /*
2 * Derived from:
3 * static char sccsid[] = "@(#)siglist.c 8.1 (Berkeley) 6/4/93";
4 */
5 #include <sys/cdefs.h>
7 #include <signal.h>
9 const char *const sys_signame[NSIG] = {
10 "Signal 0",
11 "hup", /* SIGHUP */
12 "int", /* SIGINT */
13 "quit", /* SIGQUIT */
14 "ill", /* SIGILL */
15 "trap", /* SIGTRAP */
16 "abrt", /* SIGABRT */
17 "emt", /* SIGEMT */
18 "fpe", /* SIGFPE */
19 "kill", /* SIGKILL */
20 "bus", /* SIGBUS */
21 "segv", /* SIGSEGV */
22 "sys", /* SIGSYS */
23 "pipe", /* SIGPIPE */
24 "alrm", /* SIGALRM */
25 "term", /* SIGTERM */
26 "usr1", /* SIGUSR1 */
27 "usr2", /* SIGUSR2 */
28 "chld", /* SIGCHLD */
29 "pwr", /* SIGPWR */
30 "vtalrm", /* SIGVTALRM */
31 "prof", /* SIGPROF */
32 "io", /* SIGIO */
33 "winch", /* SIGWINCH */
34 "stop", /* SIGSTOP */
35 "tstp", /* SIGTSTP */
36 "cont", /* SIGCONT */
37 "ttin", /* SIGTTIN */
38 "ttou", /* SIGTTOU */
39 "urg", /* SIGURG */
40 "lost", /* SIGLOST */
43 const char *const sys_siglist[NSIG] = {
44 "Signal 0",
45 "Hangup", /* SIGHUP */
46 "Interrupt", /* SIGINT */
47 "Quit", /* SIGQUIT */
48 "Illegal instruction", /* SIGILL */
49 "Trace/BPT trap", /* SIGTRAP */
50 "Abort trap", /* SIGABRT */
51 "EMT trap", /* SIGEMT */
52 "Floating point exception", /* SIGFPE */
53 "Killed", /* SIGKILL */
54 "Bus error", /* SIGBUS */
55 "Segmentation fault", /* SIGSEGV */
56 "Bad system call", /* SIGSYS */
57 "Broken pipe", /* SIGPIPE */
58 "Alarm clock", /* SIGALRM */
59 "Terminated", /* SIGTERM */
60 "User defined signal 1", /* SIGUSR1 */
61 "User defined signal 2" /* SIGUSR2 */
62 "Child exited", /* SIGCHLD */
63 "Power failure", /* SIGPWR */
64 "Virtual timer expired", /* SIGVTALRM */
65 "Profiling timer expired", /* SIGPROF */
66 "I/O possible", /* SIGIO */
67 "Window size changes", /* SIGWINCH */
68 "Suspended (signal)", /* SIGSTOP */
69 "Suspended", /* SIGTSTP */
70 "Continued", /* SIGCONT */
71 "Stopped (tty input)", /* SIGTTIN */
72 "Stopped (tty output)", /* SIGTTOU */
73 "Urgent I/O condition", /* SIGURG */
74 "File lock lost", /* SIGLOST */