'\" t .\" Copyright (c) 1993 by Thomas Koenig (ig25@rz.uni-karlsruhe.de) .\" .\" Permission is granted to make and distribute verbatim copies of this .\" manual provided the copyright notice and this permission notice are .\" preserved on all copies. .\" .\" Permission is granted to copy and distribute modified versions of this .\" manual under the conditions for verbatim copying, provided that the .\" entire resulting derived work is distributed under the terms of a .\" permission notice identical to this one .\" .\" Since the Linux kernel and libraries are constantly changing, this .\" manual page may be incorrect or out-of-date. The author(s) assume no .\" responsibility for errors or omissions, or for damages resulting from .\" the use of the information contained herein. The author(s) may not .\" have taken the same level of care in the production of this manual, .\" which is licensed free of charge, as they might when working .\" professionally. .\" .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" License. .\" Modified Sat Jul 24 17:34:08 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Sun Jan 7 01:41:27 1996 by Andries Brouwer (aeb@cwi.nl) .\" Modified Sun Apr 14 12:02:29 1996 by Andries Brouwer (aeb@cwi.nl) .\" .TH SIGNAL 7 "April 14, 1996" "Linux 1.3.88" "Linux Programmer's Manual" .SH NAME signal \- list of available signals .SH DESCRIPTION Linux supports the signals listed below. Several signal numbers are architecture dependent. First the signals described in POSIX.1. .sp .PP .TS l c c l ____ lB c c l. Signal Value Action Comment SIGHUP \01 A Hangup detected on controlling terminal or death of controlling process SIGINT \02 A Interrupt from keyboard SIGQUIT \03 A Quit from keyboard SIGILL \04 A Illegal Instruction SIGABRT \06 C Abort signal from \fIabort\fP(3) SIGFPE \08 C Floating point exception SIGKILL \09 AEF Kill signal SIGSEGV 11 C Invalid memory reference SIGPIPE 13 A Broken pipe: write to pipe with no readers SIGALRM 14 A Timer signal from \fIalarm\fP(1) SIGTERM 15 A Termination signal SIGUSR1 30,10,16 A User\-defined signal 1 SIGUSR2 31,12,17 A User\-defined signal 2 SIGCHLD 20,17,18 B Child stopped or terminated SIGCONT 19,18,25 Continue if stopped SIGSTOP 17,19,23 DEF Stop process SIGTSTP 18,20,24 D Stop typed at tty SIGTTIN 21,21,26 D tty input for background process SIGTTOU 22,22,27 D tty output for background process .TE Next various other signals. .sp .PP .TS l c c l ____ lB c c l. Signal Value Action Comment SIGTRAP 5 CG Trace/breakpoint trap SIGIOT 6 CG IOT trap. A synonym for SIGABRT SIGEMT 7,\-,7 G SIGBUS 10,7,10 AG Bus error SIGSYS 12,\-,12 G Bad argument to routine (SVID) SIGSTKFLT \-,16,\- AG Stack fault on coprocessor SIGURG 16,23,21 BG Urgent condition on socket (4.2 BSD) SIGIO 23,29,22 AG I/O now possible (4.2 BSD) SIGPOLL AG A synonym for SIGIO (System V) SIGCLD \-,\-,18 G A synonym for SIGCHLD SIGXCPU 24,24,30 AG CPU time limit exceeded (4.2 BSD) SIGXFSZ 25,25,31 AG File size limit exceeded (4.2 BSD) SIGVTALRM 26,26,28 AG Virtual alarm clock (4.2 BSD) SIGPROF 27,27,29 AG Profile alarm clock SIGPWR 29,30,19 AG Power failure (System V) SIGINFO 29,\-,\- G A synonym for SIGPWR SIGLOST \-,\-,\- AG File lock lost SIGWINCH 28,28,20 BG Window resize signal (4.3 BSD, Sun) SIGUNUSED \-,31,\- AG Unused signal .TE (Here \- denotes that a signal is absent; there where three values are given, the first one is usually valid for alpha and sparc, the middle one for i386 and ppc, the last one for mips. Signal 29 is SIGINFO / SIGPWR on an alpha but SIGLOST on a sparc.) .PP The letters in the "Action" column have the following meanings: .IP A Default action is to terminate the process. .IP B Default action is to ignore the signal. .IP C Default action is to dump core. .IP D Default action is to stop the process. .IP E Signal cannot be caught. .IP F Signal cannot be ignored. .IP G Not a POSIX.1 conformant signal. .SH "CONFORMING TO" POSIX.1 .SH BUGS SIGIO and SIGLOST have the same value. The latter is commented out in the kernel source, but the build process of some software still thinks that signal 29 is SIGLOST. .SH "SEE ALSO" .BR kill (1), .BR kill (2), .BR setitimer (2).