Changes.old: tfix
[man-pages.git] / man2 / signal.2
blob520646dd9e87eeff6e810a88fdcbf7f40df4392d
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>.
7 .\"
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.
12 .\"
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.
17 .\"
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
24 .\" professionally.
25 .\"
26 .\" Formatted or processed versions of this manual, if unaccompanied by
27 .\" the source, must acknowledge the copyright and authors of this work.
28 .\" %%%LICENSE_END
29 .\"
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
33 .\"     various sections.
34 .\" 2008-07-11, mtk: rewrote and expanded portability discussion.
35 .\"
36 .TH SIGNAL 2 2016-12-12 "Linux" "Linux Programmer's Manual"
37 .SH NAME
38 signal \- ANSI C signal handling
39 .SH SYNOPSIS
40 .B #include <signal.h>
41 .sp
42 .B typedef void (*sighandler_t)(int);
43 .sp
44 .BI "sighandler_t signal(int " signum ", sighandler_t " handler );
45 .SH DESCRIPTION
46 The behavior of
47 .BR signal ()
48 varies across UNIX versions,
49 and has also varied historically across different versions of Linux.
50 \fBAvoid its use\fP: use
51 .BR sigaction (2)
52 instead.
53 See \fIPortability\fP below.
55 .BR signal ()
56 sets the disposition of the signal
57 .I signum
59 .IR handler ,
60 which is either
61 .BR SIG_IGN ,
62 .BR SIG_DFL ,
63 or the address of a programmer-defined function (a "signal handler").
65 If the signal
66 .I signum
67 is delivered to the process, then one of the following happens:
68 .TP 3
70 If the disposition is set to
71 .BR SIG_IGN ,
72 then the signal is ignored.
73 .TP
75 If the disposition is set to
76 .BR SIG_DFL ,
77 then the default action associated with the signal (see
78 .BR signal (7))
79 occurs.
80 .TP
82 If the disposition is set to a function,
83 then first either the disposition is reset to
84 .BR SIG_DFL ,
85 or the signal is blocked (see \fIPortability\fP below), and then
86 .I handler
87 is called with argument
88 .IR signum .
89 If invocation of the handler caused the signal to be blocked,
90 then the signal is unblocked upon return from the handler.
91 .PP
92 The signals
93 .B SIGKILL
94 and
95 .B SIGSTOP
96 cannot be caught or ignored.
97 .SH RETURN VALUE
98 .BR signal ()
99 returns the previous value of the signal handler, or
100 .B SIG_ERR
101 on error.
102 In the event of an error,
103 .I errno
104 is set to indicate the cause.
105 .SH ERRORS
107 .B EINVAL
108 .I signum
109 is invalid.
110 .SH CONFORMING TO
111 POSIX.1-2001, POSIX.1-2008, C89, C99.
112 .SH NOTES
113 The effects of
114 .BR signal ()
115 in a multithreaded process are unspecified.
117 According to POSIX, the behavior of a process is undefined after it
118 ignores a
119 .BR SIGFPE ,
120 .BR SIGILL ,
122 .B SIGSEGV
123 signal that was not generated by
124 .BR kill (2)
126 .BR raise (3).
127 Integer division by zero has undefined result.
128 On some architectures it will generate a
129 .B SIGFPE
130 signal.
131 (Also dividing the most negative integer by \-1 may generate
132 .BR SIGFPE .)
133 Ignoring this signal might lead to an endless loop.
136 .BR sigaction (2)
137 for details on what happens when the disposition
138 .B SIGCHLD
139 is set to
140 .BR SIG_IGN .
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.
147 The use of
148 .I sighandler_t
149 is a GNU extension, exposed if
150 .B _GNU_SOURCE
151 is defined;
152 .\" libc4 and libc5 define
153 .\" .IR SignalHandler ;
154 glibc also defines (the BSD-derived)
155 .I sig_t
157 .B _BSD_SOURCE
158 (glibc 2.19 and earlier)
160 .BR _DEFAULT_SOURCE
161 (glibc 2.19 and later)
162 is defined.
163 Without use of such a type, the declaration of
164 .BR signal ()
165 is the somewhat harder to read:
166 .in +4n
169 .BI "void ( *" signal "(int " signum ", void (*" handler ")(int)) ) (int);"
172 .SS Portability
173 The only portable use of
174 .BR signal ()
175 is to set a signal's disposition to
176 .BR SIG_DFL
178 .BR SIG_IGN .
179 The semantics when using
180 .BR signal ()
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
186 .BR sigaction (2),
187 which provides explicit control of the semantics when a
188 signal handler is invoked; use that interface instead of
189 .BR signal ().
191 In the original UNIX systems, when a handler that was established using
192 .BR signal ()
193 was invoked by the delivery of a signal,
194 the disposition of the signal would be reset to
195 .BR SIG_DFL ,
196 and the system did not block delivery of further instances of the signal.
197 This is equivalent to calling
198 .BR sigaction (2)
199 with the following flags:
201     sa.sa_flags = SA_RESETHAND | SA_NODEFER;
203 System\ V also provides these semantics for
204 .BR signal ().
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
212 .BR signal ()
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
220 .BR signal (7)).
221 The BSD semantics are equivalent to calling
222 .BR sigaction (2)
223 with the following flags:
225     sa.sa_flags = SA_RESTART;
227 The situation on Linux is as follows:
228 .IP * 2
229 The kernel's
230 .BR signal ()
231 system call provides System\ V semantics.
232 .IP *
233 By default, in glibc 2 and later, the
234 .BR signal ()
235 wrapper function does not invoke the kernel system call.
236 Instead, it calls
237 .BR sigaction (2)
238 using flags that supply BSD semantics.
239 This default behavior is provided as long as a suitable
240 feature test macro is defined:
241 .B _BSD_SOURCE
242 on glibc 2.19 and earlier or
243 .BR _DEFAULT_SOURCE
244 in glibc 2.19 and later.
245 (By default, these macros are defined; see
246 .BR feature_test_macros (7)
247 for details.)
248 If such a feature test macro is not defined, then
249 .BR signal ()
250 provides System\ V semantics.
252 .\" System V semantics are also provided if one uses the separate
253 .\" .BR sysv_signal (3)
254 .\" function.
255 .\" .IP *
256 .\" The
257 .\" .BR signal ()
258 .\" function in Linux libc4 and libc5 provide System\ V semantics.
259 .\" If one on a libc5 system includes
260 .\" .I <bsd/signal.h>
261 .\" instead of
262 .\" .IR <signal.h> ,
263 .\" then
264 .\" .BR signal ()
265 .\" provides BSD semantics.
266 .SH SEE ALSO
267 .BR kill (1),
268 .BR alarm (2),
269 .BR kill (2),
270 .BR pause (2),
271 .BR sigaction (2),
272 .BR signalfd (2),
273 .BR sigpending (2),
274 .BR sigprocmask (2),
275 .BR sigsuspend (2),
276 .BR bsd_signal (3),
277 .BR killpg (3),
278 .BR raise (3),
279 .BR siginterrupt (3),
280 .BR sigqueue (3),
281 .BR sigsetops (3),
282 .BR sigvec (3),
283 .BR sysv_signal (3),
284 .BR signal (7)