xref: /csrg-svn/lib/libc/gen/siglist.c (revision 21006)
1*21006Smckusick /*	@(#)siglist.c	4.3 (Berkeley) 05/22/85	*/
210902Ssam 
310903Ssam #include <signal.h>
410903Ssam 
510902Ssam char	*sys_siglist[NSIG] = {
610902Ssam 	"Signal 0",
710902Ssam 	"Hangup",			/* SIGHUP */
810902Ssam 	"Interrupt",			/* SIGINT */
910902Ssam 	"Quit",				/* SIGQUIT */
1010902Ssam 	"Illegal instruction",		/* SIGILL */
1110902Ssam 	"Trace/BPT trap",		/* SIGTRAP */
1210902Ssam 	"IOT trap",			/* SIGIOT */
1310902Ssam 	"EMT trap",			/* SIGEMT */
1410902Ssam 	"Floating point exception",	/* SIGFPE */
1510902Ssam 	"Killed",			/* SIGKILL */
1610902Ssam 	"Bus error",			/* SIGBUS */
1710902Ssam 	"Segmentation fault",		/* SIGSEGV */
1810902Ssam 	"Bad system call",		/* SIGSYS */
1910902Ssam 	"Broken pipe",			/* SIGPIPE */
2010902Ssam 	"Alarm clock",			/* SIGALRM */
2110902Ssam 	"Terminated",			/* SIGTERM */
2210902Ssam 	"Urgent I/O condition",		/* SIGURG */
2310902Ssam 	"Stopped (signal)",		/* SIGSTOP */
2410902Ssam 	"Stopped",			/* SIGTSTP */
2510902Ssam 	"Continued",			/* SIGCONT */
2610902Ssam 	"Child exited",			/* SIGCHLD */
2710902Ssam 	"Stopped (tty input)",		/* SIGTTIN */
2810902Ssam 	"Stopped (tty output)",		/* SIGTTOU */
2910902Ssam 	"I/O possible",			/* SIGIO */
3010902Ssam 	"Cputime limit exceeded",	/* SIGXCPU */
3110902Ssam 	"Filesize limit exceeded",	/* SIGXFSZ */
3210902Ssam 	"Virtual timer expired",	/* SIGVTALRM */
3310902Ssam 	"Profiling timer expired",	/* SIGPROF */
34*21006Smckusick 	"Window size changes",		/* SIGWINCH */
3510902Ssam 	"Signal 29",
36*21006Smckusick 	"User defined signal 1",	/* SIGUSR1 */
37*21006Smckusick 	"User defined signal 2"		/* SIGUSR2 */
3810902Ssam };
39