| Value | Meaning |
|---|---|
| SIGNONE0 | invalid |
| SIGHUP1 | hangup |
| SIGINT2 | interrupt |
| SIGQUIT3 | quit |
| SIGILL4 | illegal instruction (not reset when caught) |
| SIGTRAP5 | trace trap (not reset when caught) |
| SIGABRT6 | abort() |
| SIGIOTSIGABRT | compatibility |
| SIGEMT7 | EMT instruction |
| SIGFPE8 | floating point exception |
| SIGKILL9 | kill (cannot be caught or ignored) |
| SIGBUS10 | bus error |
| SIGSEGV11 | segmentation violation |
| SIGSYS12 | bad argument to system call |
| SIGPIPE13 | write on a pipe with no one to read it |
| SIGALRM14 | alarm clock |
| SIGTERM15 | software termination signal from kill |
| SIGURG16 | urgent condition on IO channel |
| SIGSTOP17 | sendable stop signal not from tty |
| SIGTSTP18 | stop signal from tty |
| SIGCONT19 | continue a stopped process |
| SIGCHLD20 | to parent on child stop or exit |
| SIGTTIN21 | to readers pgrp upon background tty read |
| SIGTTOU22 | like TTIN for output if (tp->t_local<OSTOP) |
| SIGIO23 | input/output possible signal |
| SIGXCPU24 | exceeded CPU time limit |
| SIGXFSZ25 | exceeded file size limit |
| SIGVTALRM26 | virtual time alarm |
| SIGPROF27 | profiling time alarm |
| SIGWINCH28 | window size changes |
| SIGINFO29 | information request |
| SIGUSR130 | user defined signal 1 |
| SIGUSR231 | user defined signal 2 |