1 .\" $NetBSD: sigaction.2,v 1.7 1995/10/12 15:41:16 jtc Exp $
3 .\" Copyright (c) 1980, 1990, 1993
4 .\" The Regents of the University of California. All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 3. All advertising materials mentioning features or use of this software
15 .\" must display the following acknowledgement:
16 .\" This product includes software developed by the University of
17 .\" California, Berkeley and its contributors.
18 .\" 4. Neither the name of the University nor the names of its contributors
19 .\" may be used to endorse or promote products derived from this software
20 .\" without specific prior written permission.
22 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 .\" @(#)sigaction.2 8.2 (Berkeley) 4/3/94
41 .Nd software signal facilities
43 .Fd #include <signal.h>
52 .Fn sigaction "int sig" "const struct sigaction *act" "struct sigaction *oact"
54 The system defines a set of signals that may be delivered to a process.
55 Signal delivery resembles the occurrence of a hardware interrupt:
56 the signal is blocked from further occurrence, the current process
57 context is saved, and a new one is built. A process may specify a
59 to which a signal is delivered, or specify that a signal is to be
61 A process may also specify that a default action is to be taken
62 by the system when a signal occurs.
65 in which case its delivery is postponed until it is
67 The action to be taken on delivery is determined at the time
69 Normally, signal handlers execute on the current stack
70 of the process. This may be changed, on a per-handler basis,
71 so that signals are taken on a special
74 Signal routines execute with the signal that caused their
77 but other signals may yet occur.
80 defines the set of signals currently blocked from delivery
81 to a process. The signal mask for a process is initialized
82 from that of its parent (normally empty). It
85 call, or when a signal is delivered to the process.
88 condition arises for a process, the signal is added to a set of
89 signals pending for the process.
90 If the signal is not currently
92 by the process then it is delivered to the process.
93 Signals may be delivered any time a process enters the operating system
94 (e.g., during a system call, page fault or trap, or clock interrupt).
95 If multiple signals are ready to be delivered at the same time,
96 any signals that could be caused by traps are delivered first.
97 Additional signals may be processed at the same time, with each
98 appearing to interrupt the handlers for the previous signals
99 before their first instructions.
100 The set of pending signals is returned by the
104 is delivered, the current state of the process is saved,
105 a new signal mask is calculated (as described below),
106 and the signal handler is invoked. The call to the handler
107 is arranged so that if the signal handling routine returns
108 normally the process will resume execution in the context
109 from before the signal's delivery.
110 If the process wishes to resume in a different context, then it
111 must arrange to restore the previous context itself.
113 When a signal is delivered to a process a new signal mask is
114 installed for the duration of the process' signal handler
118 This mask is formed by taking the union of the current signal mask set,
119 the signal to be delivered, and
120 the signal mask associated with the handler to be invoked.
123 assigns an action for a specific signal.
130 or a handler routine) and mask
131 to be used when delivering the specified signal.
134 is non-zero, the previous handling information for the signal
135 is returned to the user.
137 Once a signal handler is installed, it remains installed
143 A signal-specific default action may be reset by
148 The defaults are process termination, possibly with core dump;
149 no action; stopping the process; or continuing the process.
150 See the signal list below for each signal's default action.
155 the default action for the signal is to discard the signal,
156 and if a signal is pending,
157 the pending signal is discarded even if the signal is masked.
162 current and pending instances
163 of the signal are ignored and discarded.
165 Options may be specified by setting
169 bit is set when installing a catching function
175 signal will be generated only when a child process exits,
176 not when a child process stops.
181 the system will deliver the signal to the process on a
188 option causes the 2nd argument for the signal handler to be a pointer
192 .Pa <sys/siginfo.h> .
197 and provides much more information about the causes and
198 attributes of the signal that is being delivered.
200 If a signal is caught during the system calls listed below,
201 the call may be forced to terminate
204 the call may return with a data transfer shorter than requested,
205 or the call may be restarted.
206 Restart of pending calls is requested
211 The affected system calls include
220 on a communications channel or a slow device (such as a terminal,
221 but not a regular file)
226 However, calls that have already committed are not restarted,
227 but instead return a partial success (for example, a short read count).
233 all signals, the signal mask, the signal stack,
234 and the restart/interrupt flags are inherited by the child.
237 reinstates the default
238 action for all signals which were caught and
239 resets all signals to be caught on the user stack.
240 Ignored signals remain ignored;
241 the signal mask remains the same;
242 signals that restart pending system calls continue to do so.
244 The following is a list of all signals
245 with names as in the include file
247 .Bl -column SIGVTALARMXX "create core imagexxx"
248 .It Sy " NAME " " Default Action " " Description"
249 .It Dv SIGHUP No " terminate process" " terminal line hangup"
250 .It Dv SIGINT No " terminate process" " interrupt program"
251 .It Dv SIGQUIT No " create core image" " quit program"
252 .It Dv SIGILL No " create core image" " illegal instruction"
253 .It Dv SIGTRAP No " create core image" " trace trap"
254 .It Dv SIGABRT No " create core image" Xr abort 2
257 .It Dv SIGEMT No " create core image" " emulate instruction executed"
258 .It Dv SIGFPE No " create core image" " floating-point exception"
259 .It Dv SIGKILL No " terminate process" " kill program"
260 .It Dv SIGBUS No " create core image" " bus error"
261 .It Dv SIGSEGV No " create core image" " segmentation violation"
262 .It Dv SIGSYS No " create core image" " system call given invalid argument"
263 .It Dv SIGPIPE No " terminate process" " write on a pipe with no reader"
264 .It Dv SIGALRM No " terminate process" " real-time timer expired"
265 .It Dv SIGTERM No " terminate process" " software termination signal"
266 .It Dv SIGURG No " discard signal" " urgent condition present on socket"
267 .It Dv SIGSTOP No " stop process" " stop (cannot be caught or ignored)"
268 .It Dv SIGTSTP No " stop process" " stop signal generated from keyboard"
269 .It Dv SIGCONT No " discard signal" " continue after stop"
270 .It Dv SIGCHLD No " discard signal" " child status has changed"
271 .It Dv SIGTTIN No " stop process" " background read attempted from control terminal"
272 .It Dv SIGTTOU No " stop process" " background write attempted to control terminal"
273 .It Dv SIGIO No " discard signal" Tn " I/O"
274 is possible on a descriptor (see
276 .It Dv SIGXCPU No " terminate process" " cpu time limit exceeded (see"
278 .It Dv SIGXFSZ No " terminate process" " file size limit exceeded (see"
280 .It Dv SIGVTALRM No " terminate process" " virtual time alarm (see"
282 .It Dv SIGPROF No " terminate process" " profiling timer alarm (see"
284 .It Dv SIGWINCH No " discard signal" " Window size change"
285 .It Dv SIGINFO No " discard signal" " status request from keyboard"
286 .It Dv SIGUSR1 No " terminate process" " User defined signal 1"
287 .It Dv SIGUSR2 No " terminate process" " User defined signal 2"
290 The mask specified in
292 is not allowed to block
296 This is done silently by the system.
298 A 0 value indicated that the call succeeded. A \-1 return value
299 indicates an error occurred and
301 is set to indicated the reason.
303 The handler routine can be declared:
304 .Bd -literal -offset indent
305 void handler(sig, sip, scp)
308 struct sigcontext *scp;
313 is the signal number, into which the hardware faults and traps are
322 .Pa <sys/siginfo.h> .
325 is not set, this is NULL.
329 structure (defined in
331 used to restore the context from before the signal.
334 will fail and no new signal handler will be installed if one
335 of the following occurs:
342 points to memory that is not a valid part of the process
346 is not a valid signal number.
348 An attempt is made to ignore or supply a handler for
356 function is defined by
362 flags are Berkeley extensions,
377 Those signals are available on most