xref: /original-bsd/lib/libc/gen/siglist.c (revision 40192f2d)
1 /*	@(#)siglist.c	4.2 (Berkeley) 02/10/83	*/
2 
3 #include <signal.h>
4 
5 char	*sys_siglist[NSIG] = {
6 	"Signal 0",
7 	"Hangup",			/* SIGHUP */
8 	"Interrupt",			/* SIGINT */
9 	"Quit",				/* SIGQUIT */
10 	"Illegal instruction",		/* SIGILL */
11 	"Trace/BPT trap",		/* SIGTRAP */
12 	"IOT trap",			/* SIGIOT */
13 	"EMT trap",			/* SIGEMT */
14 	"Floating point exception",	/* SIGFPE */
15 	"Killed",			/* SIGKILL */
16 	"Bus error",			/* SIGBUS */
17 	"Segmentation fault",		/* SIGSEGV */
18 	"Bad system call",		/* SIGSYS */
19 	"Broken pipe",			/* SIGPIPE */
20 	"Alarm clock",			/* SIGALRM */
21 	"Terminated",			/* SIGTERM */
22 	"Urgent I/O condition",		/* SIGURG */
23 	"Stopped (signal)",		/* SIGSTOP */
24 	"Stopped",			/* SIGTSTP */
25 	"Continued",			/* SIGCONT */
26 	"Child exited",			/* SIGCHLD */
27 	"Stopped (tty input)",		/* SIGTTIN */
28 	"Stopped (tty output)",		/* SIGTTOU */
29 	"I/O possible",			/* SIGIO */
30 	"Cputime limit exceeded",	/* SIGXCPU */
31 	"Filesize limit exceeded",	/* SIGXFSZ */
32 	"Virtual timer expired",	/* SIGVTALRM */
33 	"Profiling timer expired",	/* SIGPROF */
34 	"Signal 28",
35 	"Signal 29",
36 	"Signal 30",
37 	"Signal 31"
38 };
39