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