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