Remove building with NOCRYPTO option
[minix3.git] / lib / libc / gen / signal.3
blobe554195a3016b135c00cdfe4839ac5fb2ff5c563
1 .\"     $NetBSD: signal.3,v 1.24 2004/06/13 19:17:06 lha Exp $
2 .\"
3 .\" Copyright (c) 1980, 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
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. Neither the name of the University nor the names of its contributors
15 .\"    may be used to endorse or promote products derived from this software
16 .\"    without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\"     @(#)signal.3    8.3 (Berkeley) 4/19/94
31 .\"
32 .Dd June 11, 2004
33 .Dt SIGNAL 3
34 .Os
35 .Sh NAME
36 .Nm signal
37 .Nd simplified software signal facilities
38 .Sh LIBRARY
39 .Lb libc
40 .Sh SYNOPSIS
41 .In signal.h
42 .\" The following is Quite Ugly, but syntactically correct.  Don't try to
43 .\" fix it.
44 .Ft void \*(lp*
45 .Fn signal "int sig" "void \*(lp*func\*(rp\*(lpint\*(rp\*(rp\*(rp\*(lpint"
46 .Sh DESCRIPTION
47 This
48 .Fn signal
49 facility
50 is a simplified interface to the more general
51 .Xr sigaction 2
52 facility.
53 .Pp
54 Signals allow the manipulation of a process from outside its
55 domain as well as allowing the process to manipulate itself or
56 copies of itself (children).
57 There are two general types of signals:
58 those that cause termination of a process and those that do not.
59 Signals which cause termination of a program might result from
60 an irrecoverable error or might be the result of a user at a terminal
61 typing the `interrupt' character.
62 Signals are used when a process is stopped because it wishes to access
63 its control terminal while in the background (see
64 .Xr tty 4 ) .
65 Signals are optionally generated
66 when a process resumes after being stopped,
67 when the status of child processes changes,
68 or when input is ready at the control terminal.
69 Most signals result in the termination of the process receiving them
70 if no action
71 is taken; some signals instead cause the process receiving them
72 to be stopped, or are simply discarded if the process has not
73 requested otherwise.
74 Except for the
75 .Dv SIGKILL
76 and
77 .Dv SIGSTOP
78 signals, the
79 .Fn signal
80 function allows for a signal to be caught, to be ignored, or to generate
81 an interrupt.
82 See
83 .Xr signal 7
84 for comprehensive list of supported signals.
85 .Pp
86 The
87 .Fa func
88 procedure allows a user to choose the action upon receipt of a signal.
89 To set the default action of the signal to occur as listed above,
90 .Fa func
91 should be
92 .Dv SIG_DFL .
94 .Dv SIG_DFL
95 resets the default action.
96 To ignore the signal
97 .Fa func
98 should be
99 .Dv SIG_IGN .
100 This will cause subsequent instances of the signal to be ignored
101 and pending instances to be discarded.
103 .Dv SIG_IGN
104 is not used,
105 further occurrences of the signal are
106 automatically blocked and
107 .Fa func
108 is called.
110 The handled signal is unblocked when the
111 function returns and
112 the process continues from where it left off when the signal occurred.
113 .Bf -symbolic
114 Unlike previous signal facilities, the handler
115 func() remains installed after a signal has been delivered.
118 For some system calls, if a signal is caught while the call is
119 executing and the call is prematurely terminated,
120 the call is automatically restarted.
121 (The handler is installed using the
122 .Dv SA_RESTART
123 flag with
124 .Xr sigaction 2 ) .
125 The affected system calls include
126 .Xr read 2 ,
127 .Xr write 2 ,
128 .Xr sendto 2 ,
129 .Xr recvfrom 2 ,
130 .Xr sendmsg 2
132 .Xr recvmsg 2
133 on a communications channel or a low speed device
134 and during a
135 .Xr ioctl 2
137 .Xr wait 2 .
138 However, calls that have already committed are not restarted,
139 but instead return a partial success (for example, a short read count).
141 When a process which has installed signal handlers forks,
142 the child process inherits the signals.
143 All caught signals may be reset to their default action by a call
144 to the
145 .Xr execve 2
146 function;
147 ignored signals remain ignored.
149 Only functions that are async-signal-safe can safely be used in signal
150 handlers, see
151 .Xr signal 7
152 for a complete list.
153 .Sh RETURN VALUES
154 The previous action is returned on a successful call.
155 Otherwise,
156 .Dv SIG_ERR
157 is returned and the global variable
158 .Va errno
159 is set to indicate the error.
160 .Sh ERRORS
161 .Fn signal
162 will fail and no action will take place if one of the following occur:
163 .Bl -tag -width Er
164 .It Bq Er EINVAL
165 Specified
166 .Em sig
167 is not a valid signal number.
168 .It Bq Er EINVAL
169 An attempt is made to ignore or supply a handler for
170 .Dv SIGKILL
172 .Dv SIGSTOP .
174 .Sh SEE ALSO
175 .Xr kill 1 ,
176 .Xr kill 2 ,
177 .Xr ptrace 2 ,
178 .Xr sigaction 2 ,
179 .Xr sigaltstack 2 ,
180 .Xr sigprocmask 2 ,
181 .Xr sigsuspend 2 ,
182 .Xr psignal 3 ,
183 .Xr setjmp 3 ,
184 .Xr strsignal 3 ,
185 .Xr tty 4 ,
186 .Xr signal 7
187 .Sh HISTORY
188 This
189 .Fn signal
190 facility appeared in
191 .Bx 4.0 .