1 .\" Copyright (c) 2000 Andries Brouwer <aeb@cwi.nl>
2 .\" and Copyright (c) 2007 Michael Kerrisk <mtk.manpages@gmail.com>
3 .\" and Copyright (c) 2008, Linux Foundation, written by Michael Kerrisk
4 .\" <mtk.manpages@gmail.com>
5 .\" based on work by Rik Faith <faith@cs.unc.edu>
6 .\" and Mike Battersby <mike@starbug.apana.org.au>.
8 .\" %%%LICENSE_START(VERBATIM)
9 .\" Permission is granted to make and distribute verbatim copies of this
10 .\" manual provided the copyright notice and this permission notice are
11 .\" preserved on all copies.
13 .\" Permission is granted to copy and distribute modified versions of this
14 .\" manual under the conditions for verbatim copying, provided that the
15 .\" entire resulting derived work is distributed under the terms of a
16 .\" permission notice identical to this one.
18 .\" Since the Linux kernel and libraries are constantly changing, this
19 .\" manual page may be incorrect or out-of-date. The author(s) assume no
20 .\" responsibility for errors or omissions, or for damages resulting from
21 .\" the use of the information contained herein. The author(s) may not
22 .\" have taken the same level of care in the production of this manual,
23 .\" which is licensed free of charge, as they might when working
26 .\" Formatted or processed versions of this manual, if unaccompanied by
27 .\" the source, must acknowledge the copyright and authors of this work.
30 .\" Modified 2004-11-19, mtk:
31 .\" added pointer to sigaction.2 for details of ignoring SIGCHLD
32 .\" 2007-06-03, mtk: strengthened portability warning, and rewrote
34 .\" 2008-07-11, mtk: rewrote and expanded portability discussion.
36 .TH SIGNAL 2 2016-12-12 "Linux" "Linux Programmer's Manual"
38 signal \- ANSI C signal handling
40 .B #include <signal.h>
42 .B typedef void (*sighandler_t)(int);
44 .BI "sighandler_t signal(int " signum ", sighandler_t " handler );
48 varies across UNIX versions,
49 and has also varied historically across different versions of Linux.
50 \fBAvoid its use\fP: use
53 See \fIPortability\fP below.
56 sets the disposition of the signal
63 or the address of a programmer-defined function (a "signal handler").
67 is delivered to the process, then one of the following happens:
70 If the disposition is set to
72 then the signal is ignored.
75 If the disposition is set to
77 then the default action associated with the signal (see
82 If the disposition is set to a function,
83 then first either the disposition is reset to
85 or the signal is blocked (see \fIPortability\fP below), and then
87 is called with argument
89 If invocation of the handler caused the signal to be blocked,
90 then the signal is unblocked upon return from the handler.
96 cannot be caught or ignored.
99 returns the previous value of the signal handler, or
102 In the event of an error,
104 is set to indicate the cause.
111 POSIX.1-2001, POSIX.1-2008, C89, C99.
115 in a multithreaded process are unspecified.
117 According to POSIX, the behavior of a process is undefined after it
123 signal that was not generated by
127 Integer division by zero has undefined result.
128 On some architectures it will generate a
131 (Also dividing the most negative integer by \-1 may generate
133 Ignoring this signal might lead to an endless loop.
137 for details on what happens when the disposition
143 .BR signal-safety (7)
144 for a list of the async-signal-safe functions that can be
145 safely called from inside a signal handler.
149 is a GNU extension, exposed if
152 .\" libc4 and libc5 define
153 .\" .IR SignalHandler ;
154 glibc also defines (the BSD-derived)
158 (glibc 2.19 and earlier)
161 (glibc 2.19 and later)
163 Without use of such a type, the declaration of
165 is the somewhat harder to read:
169 .BI "void ( *" signal "(int " signum ", void (*" handler ")(int)) ) (int);"
173 The only portable use of
175 is to set a signal's disposition to
179 The semantics when using
181 to establish a signal handler vary across systems
182 (and POSIX.1 explicitly permits this variation);
183 .B do not use it for this purpose.
185 POSIX.1 solved the portability mess by specifying
187 which provides explicit control of the semantics when a
188 signal handler is invoked; use that interface instead of
191 In the original UNIX systems, when a handler that was established using
193 was invoked by the delivery of a signal,
194 the disposition of the signal would be reset to
196 and the system did not block delivery of further instances of the signal.
197 This is equivalent to calling
199 with the following flags:
201 sa.sa_flags = SA_RESETHAND | SA_NODEFER;
203 System\ V also provides these semantics for
205 This was bad because the signal might be delivered again
206 before the handler had a chance to reestablish itself.
207 Furthermore, rapid deliveries of the same signal could
208 result in recursive invocations of the handler.
210 BSD improved on this situation, but unfortunately also
211 changed the semantics of the existing
213 interface while doing so.
214 On BSD, when a signal handler is invoked,
215 the signal disposition is not reset,
216 and further instances of the signal are blocked from
217 being delivered while the handler is executing.
218 Furthermore, certain blocking system calls are automatically
219 restarted if interrupted by a signal handler (see
221 The BSD semantics are equivalent to calling
223 with the following flags:
225 sa.sa_flags = SA_RESTART;
227 The situation on Linux is as follows:
231 system call provides System\ V semantics.
233 By default, in glibc 2 and later, the
235 wrapper function does not invoke the kernel system call.
238 using flags that supply BSD semantics.
239 This default behavior is provided as long as a suitable
240 feature test macro is defined:
242 on glibc 2.19 and earlier or
244 in glibc 2.19 and later.
245 (By default, these macros are defined; see
246 .BR feature_test_macros (7)
248 If such a feature test macro is not defined, then
250 provides System\ V semantics.
252 .\" System V semantics are also provided if one uses the separate
253 .\" .BR sysv_signal (3)
258 .\" function in Linux libc4 and libc5 provide System\ V semantics.
259 .\" If one on a libc5 system includes
260 .\" .I <bsd/signal.h>
265 .\" provides BSD semantics.
279 .BR siginterrupt (3),