1 .\" Copyright (c) 1980, 1990, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" From: @(#)sigaction.2 8.2 (Berkeley) 4/3/94
33 .\" $FreeBSD: src/lib/libc/sys/sigaction.2,v 1.48 2003/03/24 16:07:19 charnier Exp $
40 .Nd software signal facilities
48 void (*__sa_handler)(int);
49 void (*__sa_sigaction)(int, struct __siginfo *, void *);
50 } __sigaction_u; /* signal handler */
51 int sa_flags; /* see signal options below */
52 sigset_t sa_mask; /* signal mask to apply */
55 #define sa_handler __sigaction_u.__sa_handler
56 #define sa_sigaction __sigaction_u.__sa_sigaction
61 .Fa "const struct sigaction *restrict act"
62 .Fa "struct sigaction *restrict oact"
65 The system defines a set of signals that may be delivered to a process.
66 Signal delivery resembles the occurrence of a hardware interrupt:
67 the signal is normally blocked from further occurrence, the current process
68 context is saved, and a new one is built. A process may specify a
70 to which a signal is delivered, or specify that a signal is to be
72 A process may also specify that a default action is to be taken
73 by the system when a signal occurs.
76 in which case its delivery is postponed until it is
78 The action to be taken on delivery is determined at the time
80 Normally, signal handlers execute on the current stack
81 of the process. This may be changed, on a per-handler basis,
82 so that signals are taken on a special
85 Signal routines normally execute with the signal that caused their
88 but other signals may yet occur.
91 defines the set of signals currently blocked from delivery
92 to a process. The signal mask for a process is initialized
93 from that of its parent (normally empty). It
96 call, or when a signal is delivered to the process.
99 condition arises for a process, the signal is added to a set of
100 signals pending for the process.
101 If the signal is not currently
103 by the process then it is delivered to the process.
104 Signals may be delivered any time a process enters the operating system
105 (e.g., during a system call, page fault or trap, or clock interrupt).
106 If multiple signals are ready to be delivered at the same time,
107 any signals that could be caused by traps are delivered first.
108 Additional signals may be processed at the same time, with each
109 appearing to interrupt the handlers for the previous signals
110 before their first instructions.
111 The set of pending signals is returned by the
115 is delivered, the current state of the process is saved,
116 a new signal mask is calculated (as described below),
117 and the signal handler is invoked. The call to the handler
118 is arranged so that if the signal handling routine returns
119 normally the process will resume execution in the context
120 from before the signal's delivery.
121 If the process wishes to resume in a different context, then it
122 must arrange to restore the previous context itself.
124 When a signal is delivered to a process a new signal mask is
125 installed for the duration of the process' signal handler
128 system call is made).
129 This mask is formed by taking the union of the current signal mask set,
130 the signal to be delivered, and
131 the signal mask associated with the handler to be invoked.
136 assigns an action for a signal specified by
144 or a handler routine) and mask
145 to be used when delivering the specified signal.
148 is non-zero, the previous handling information for the signal
149 is returned to the user.
151 Once a signal handler is installed, it normally remains installed
154 system call is made, or an
157 A signal-specific default action may be reset by
162 The defaults are process termination, possibly with core dump;
163 no action; stopping the process; or continuing the process.
164 See the signal list below for each signal's default action.
169 the default action for the signal is to discard the signal,
170 and if a signal is pending,
171 the pending signal is discarded even if the signal is masked.
176 current and pending instances
177 of the signal are ignored and discarded.
179 Options may be specified by setting
181 The meaning of the various bits is as follows:
182 .Bl -tag -offset indent -width SA_RESETHANDXX
184 If this bit is set when installing a catching function
190 signal will be generated only when a child process exits,
191 not when a child process stops.
193 If this bit is set when calling
197 signal, the system will not create zombie processes when children of
198 the calling process exit. If the calling process subsequently issues
201 (or equivalent), it blocks until all of the calling process's child
202 processes terminate, and then returns a value of -1 with errno set to
205 If this bit is set, the system will deliver the signal to the process
211 If this bit is set, further occurrences of the delivered signal are
212 not masked during the execution of the handler.
214 If this bit is set, the handler is reset back to
216 at the moment the signal is delivered.
220 If this bit is set, the handler function is assumed to be pointed to by the
222 member of struct sigaction and should match the prototype shown above or as
225 This bit should not be set when assigning
231 If a signal is caught during the system calls listed below,
232 the call may be forced to terminate
235 the call may return with a data transfer shorter than requested,
236 or the call may be restarted.
237 Restart of pending calls is requested
242 The affected system calls include
251 on a communications channel or a slow device (such as a terminal,
252 but not a regular file)
257 However, calls that have already committed are not restarted,
258 but instead return a partial success (for example, a short read count).
264 all signals, the signal mask, the signal stack,
265 and the restart/interrupt flags are inherited by the child.
269 system call reinstates the default
270 action for all signals which were caught and
271 resets all signals to be caught on the user stack.
272 Ignored signals remain ignored;
273 the signal mask remains the same;
274 signals that restart pending system calls continue to do so.
276 The following is a list of all signals
277 with names as in the include file
279 .Bl -column SIGVTALARMXX "create core imagexxx"
280 .It Sy "NAME Default Action Description"
281 .It Dv SIGHUP No " terminate process" " terminal line hangup"
282 .It Dv SIGINT No " terminate process" " interrupt program"
283 .It Dv SIGQUIT No " create core image" " quit program"
284 .It Dv SIGILL No " create core image" " illegal instruction"
285 .It Dv SIGTRAP No " create core image" " trace trap"
286 .It Dv SIGABRT No " create core image" Ta Xr abort 3
289 .It Dv SIGEMT No " create core image" " emulate instruction executed"
290 .It Dv SIGFPE No " create core image" " floating-point exception"
291 .It Dv SIGKILL No " terminate process" " kill program"
292 .It Dv SIGBUS No " create core image" " bus error"
293 .It Dv SIGSEGV No " create core image" " segmentation violation"
294 .It Dv SIGSYS No " create core image" " non-existent system call invoked"
295 .It Dv SIGPIPE No " terminate process" " write on a pipe with no reader"
296 .It Dv SIGALRM No " terminate process" " real-time timer expired"
297 .It Dv SIGTERM No " terminate process" " software termination signal"
298 .It Dv SIGURG No " discard signal" " urgent condition present on socket"
299 .It Dv SIGSTOP No " stop process" " stop (cannot be caught or ignored)"
300 .It Dv SIGTSTP No " stop process" " stop signal generated from keyboard"
301 .It Dv SIGCONT No " discard signal" " continue after stop"
302 .It Dv SIGCHLD No " discard signal" " child status has changed"
303 .It Dv SIGTTIN No " stop process" " background read attempted from control terminal"
304 .It Dv SIGTTOU No " stop process" " background write attempted to control terminal"
305 .It Dv SIGIO No " discard signal" Tn " I/O"
306 is possible on a descriptor (see
308 .It Dv SIGXCPU No " terminate process" " cpu time limit exceeded (see"
310 .It Dv SIGXFSZ No " terminate process" " file size limit exceeded (see"
312 .It Dv SIGVTALRM No " terminate process" " virtual time alarm (see"
314 .It Dv SIGPROF No " terminate process" " profiling timer alarm (see"
316 .It Dv SIGWINCH No " discard signal" " Window size change"
317 .It Dv SIGINFO No " discard signal" " status request from keyboard"
318 .It Dv SIGUSR1 No " terminate process" " User defined signal 1"
319 .It Dv SIGUSR2 No " terminate process" " User defined signal 2"
326 is not allowed to block
330 Any attempt to do so will be silently ignored.
332 The following functions are either reentrant or not interruptible
333 by signals and are async-signal safe.
334 Therefore applications may
335 invoke them, without restriction, from signal-catching functions:
421 .Fn timer_getoverrun ,
437 and perhaps some others.
439 Extension Interfaces:
444 All functions not in the above lists are considered to be unsafe
445 with respect to signals. That is to say, the behaviour of such
446 functions when called from a signal handler is undefined.
447 In general though, signal handlers should do little more than set a
448 flag; most other actions are not safe.
450 Also, it is good practice to make a copy of the global variable
452 and restore it before returning from the signal handler.
453 This protects against the side effect of
455 being set by functions called from inside the signal handler.
459 There are three possible prototypes the handler may match:
460 .Bl -tag -offset indent -width short
464 .It POSIX SA_SIGINFO:
466 .Fn handler int "siginfo_t *info" "ucontext_t *uap" ;
469 The handler function should match the SA_SIGINFO prototype if the
470 SA_SIGINFO bit is set in flags.
471 It then should be pointed to by the
474 .Dv struct sigaction .
475 Note that you should not assign SIG_DFL or SIG_IGN this way.
477 If the SA_SIGINFO flag is not set, the handler function should match
478 either the ANSI C or traditional
480 prototype and be pointed to by
484 .Dv struct sigaction .
487 always sends the three arguments of the latter and since the ANSI C
488 prototype is a subset, both will work.
491 member declaration in
493 include files is that of ANSI C (as required by POSIX),
494 so a function pointer of a
496 function needs to be casted to
497 compile without warning.
500 style is not portable and since its capabilities
501 are a full subset of a SA_SIGINFO handler,
502 its use is deprecated.
506 argument is the signal number, one of the
508 values from <signal.h>.
518 argument to a SA_SIGINFO handler contain a numeric code explaining the
519 cause of the signal, usually one of the
522 <sys/signal.h> or codes specific to a signal, i.e. one of the
528 argument to a POSIX SA_SIGINFO handler points to an instance of
534 will fail and no new signal handler will be installed if one
535 of the following occurs:
543 points to memory that is not a valid part of the process
550 is not a valid signal number.
553 An attempt is made to ignore or supply a handler for
559 An attempt was made to set the action to SIG_DFL
560 for a signal that cannot be caught or ignored (or both).
565 system call is expected to conform to
571 flags are Berkeley extensions,
586 Those signals are available on most
593 flags are intended for backwards compatibility with other operating
600 flags are featuring options commonly found in other operating systems.