1 .\" Copyright (c) 1980, 1991, 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 .\" @(#)signal.3 8.3 (Berkeley) 4/19/94
33 .\" $FreeBSD: src/lib/libc/gen/signal.3,v 1.17.2.9 2003/03/13 18:05:37 trhodes Exp $
34 .\" $DragonFly: src/lib/libc/gen/signal.3,v 1.6 2007/09/08 20:50:49 swildner Exp $
41 .Nd simplified software signal facilities
46 .\" The following is Quite Ugly, but syntactically correct. Don't try to
49 .Fn signal "int sig" "void \*(lp*func\*(rp\*(lpint\*(rp\*(rp\*(rp\*(lpint"
53 equivalent but easier to read typedef'd version:
54 .Ft typedef "void \*(lp*sig_t\*(rp \*(lpint\*(rp" ;
56 .Fn signal "int sig" "sig_t func"
61 is a simplified interface to the more general
65 Signals allow the manipulation of a process from outside its
66 domain as well as allowing the process to manipulate itself or
67 copies of itself (children).
68 There are two general types of signals:
69 those that cause termination of a process and those that do not.
70 Signals which cause termination of a program might result from
71 an irrecoverable error or might be the result of a user at a terminal
72 typing the `interrupt' character.
73 Signals are used when a process is stopped because it wishes to access
74 its control terminal while in the background (see
76 Signals are optionally generated
77 when a process resumes after being stopped,
78 when the status of child processes changes,
79 or when input is ready at the control terminal.
80 Most signals result in the termination of the process receiving them
82 is taken; some signals instead cause the process receiving them
83 to be stopped, or are simply discarded if the process has not
91 function allows for a signal to be caught, to be ignored, or to generate
93 These signals are defined in the file
95 .Bl -column ".Dv SIGCKPTEXIT" "create core imagexxx"
96 .It Sy "Name Default Action Description"
97 .It Dv SIGHUP Ta "terminate process" Ta "terminal line hangup"
98 .It Dv SIGINT Ta "terminate process" Ta "interrupt program"
99 .It Dv SIGQUIT Ta "create core image" Ta "quit program"
100 .It Dv SIGILL Ta "create core image" Ta "illegal instruction"
101 .It Dv SIGTRAP Ta "create core image" Ta "trace trap"
102 .It Dv SIGABRT Ta "create core image" Ta "abort program"
105 .It Dv SIGEMT Ta "create core image" Ta "emulate instruction executed"
106 .It Dv SIGFPE Ta "create core image" Ta "floating-point exception"
107 .It Dv SIGKILL Ta "terminate process" Ta "kill program"
108 .It Dv SIGBUS Ta "create core image" Ta "bus error"
109 .It Dv SIGSEGV Ta "create core image" Ta "segmentation violation"
110 .It Dv SIGSYS Ta "create core image" Ta "non-existent system call invoked"
111 .It Dv SIGPIPE Ta "terminate process" Ta "write on a pipe with no reader"
112 .It Dv SIGALRM Ta "terminate process" Ta "real-time timer expired"
113 .It Dv SIGTERM Ta "terminate process" Ta "software termination signal"
114 .It Dv SIGURG Ta "discard signal" Ta "urgent condition present on socket"
115 .It Dv SIGSTOP Ta "stop process" Ta "stop (cannot be caught or ignored)"
116 .It Dv SIGTSTP Ta "stop process" Ta "stop signal generated from keyboard"
117 .It Dv SIGCONT Ta "discard signal" Ta "continue after stop"
118 .It Dv SIGCHLD Ta "discard signal" Ta "child status has changed"
119 .It Dv SIGTTIN Ta "stop process" Ta "background read attempted from control terminal"
120 .It Dv SIGTTOU Ta "stop process" Ta "background write attempted to control terminal"
121 .It Dv SIGIO Ta "discard signal" Ta Tn "I/O"
122 is possible on a descriptor (see
124 .It Dv SIGXCPU Ta "terminate process" Ta "cpu time limit exceeded (see"
126 .It Dv SIGXFSZ Ta "terminate process" Ta "file size limit exceeded (see"
128 .It Dv SIGVTALRM Ta "terminate process" Ta "virtual time alarm (see"
130 .It Dv SIGPROF Ta "terminate process" Ta "profiling timer alarm (see"
132 .It Dv SIGWINCH Ta "discard signal" Ta "Window size change"
133 .It Dv SIGINFO Ta "discard signal" Ta "status request from keyboard"
134 .It Dv SIGUSR1 Ta "terminate process" Ta "User defined signal 1"
135 .It Dv SIGUSR2 Ta "terminate process" Ta "User defined signal 2"
136 .It Dv SIGCKPT Ta "checkpoint process" Ta "Checkpoint"
137 .It Dv SIGCKPTEXIT Ta "terminate process" Ta "Checkpoint and exit"
142 argument specifies which signal was received.
145 procedure allows a user to choose the action upon receipt of a signal.
146 To set the default action of the signal to occur as listed above,
152 resets the default action.
157 This will cause subsequent instances of the signal to be ignored
158 and pending instances to be discarded.
162 further occurrences of the signal are
163 automatically blocked and
167 The handled signal is unblocked when the
169 the process continues from where it left off when the signal occurred.
171 Unlike previous signal facilities, the handler
172 func() remains installed after a signal has been delivered.
175 For some system calls, if a signal is caught while the call is
176 executing and the call is prematurely terminated,
177 the call is automatically restarted.
178 (The handler is installed using the
182 The affected system calls include
190 on a communications channel or a low speed device
195 However, calls that have already committed are not restarted,
196 but instead return a partial success (for example, a short read count).
197 These semantics could be changed with
200 When a process which has installed signal handlers forks,
201 the child process inherits the signals.
202 All caught signals may be reset to their default action by a call
206 ignored signals remain ignored.
210 for a list of functions
211 that are considered safe for use in signal handlers.
213 The previous action is returned on a successful call.
216 is returned and the global variable
218 is set to indicate the error.
223 will fail and no action will take place if one of the
230 is not a valid signal number.
232 An attempt is made to ignore or supply a handler for