File: signal.2

package info (click to toggle)
manpages 1.70-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 8,704 kB
  • ctags: 7
  • sloc: perl: 162; sh: 94; makefile: 70; lisp: 22
file content (295 lines) | stat: -rw-r--r-- 6,076 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
.\" Copyright (c) 2000 Andries Brouwer <aeb@cwi.nl>
.\" based on work by Rik Faith <faith@cs.unc.edu>
.\" and Mike Battersby <mike@starbug.apana.org.au>.
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\" 
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein.  The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\" 
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.TH SIGNAL 2 2000-04-28 "Linux 2.2" "Linux Programmer's Manual"
.SH NAME
signal \- ANSI C signal handling
.SH SYNOPSIS
.B #include <signal.h>
.sp
.B typedef void (*sighandler_t)(int);
.sp
.BI "sighandler_t signal(int " signum ", sighandler_t " handler );
.SH DESCRIPTION
The
.BR signal ()
system call installs a new signal handler for the signal with number
.IR signum .
The signal handler is set to
.I sighandler
which may be a user specified function, or either
.B SIG_IGN
or
.BR SIG_DFL .

Upon arrival of a signal with number
.I signum
the following happens.
If the corresponding handler is set to
.BR SIG_IGN ,
then the signal is ignored.
If the handler is set to
.BR SIG_DFL ,
then the default action associated to the signal (see
.BR signal (7))
occurs.
Finally, if the handler is set to a function
.I sighandler
then first either the handler is reset to SIG_DFL
or an implementation-dependent blocking of the signal
is performed and next
.I sighandler
is called with argument
.IR signum .

Using a signal handler function for a signal
is called "catching the signal".
The signals
.B SIGKILL
and
.B SIGSTOP
cannot be caught or ignored.
.SH "RETURN VALUE"
The
.BR signal ()
function returns the previous value of the signal handler, or
.B SIG_ERR
on error.
.SH PORTABILITY
The original Unix
.BR signal ()
would reset the handler to SIG_DFL, and System V
(and the Linux kernel and libc4,5) does the same.
On the other hand, BSD does not reset the handler, but blocks
new instances of this signal from occurring during a call of the handler.
The glibc2 library follows the BSD behaviour.

If one on a libc5 system includes
.B "<bsd/signal.h>"
instead of
.B "<signal.h>"
then 
.B signal
is redefined as
.B __bsd_signal
and signal has the BSD semantics.  This is not recommended.

If one on a glibc2 system defines a feature test
macro such as
.B _XOPEN_SOURCE
or uses a separate
.B sysv_signal
function, one obtains classical behaviour.  This is not recommended.

Trying to change the semantics of this call using
defines and includes is not a good idea.  It is better to avoid
.B signal
altogether, and use
.BR sigaction (2)
instead.
.SH NOTES
The effects of this call in a multi-threaded process are unspecified.
.PP
The routine
.I handler
must be very careful, since processing elsewhere was interrupted
at some arbitrary point. POSIX has the concept of "safe function".
If a signal interrupts an unsafe function, and
.I handler
calls an unsafe function, then the behavior is undefined. Safe
functions are listed explicitly in the various standards.
The POSIX 1003.1-2003 list is

_Exit()
_exit()
abort()
accept()
access()
aio_error()
aio_return()
aio_suspend()
alarm()
bind()
cfgetispeed()
cfgetospeed()
cfsetispeed()
cfsetospeed()
chdir()
chmod()
chown()
clock_gettime()
close()
connect()
creat()
dup()
dup2()
execle()
execve()
fchmod()
fchown()
fcntl()
fdatasync()
fork()
fpathconf()
fstat()
fsync()
ftruncate()
getegid()
geteuid()
getgid()
getgroups()
getpeername()
getpgrp()
getpid()
getppid()
getsockname()
getsockopt()
getuid()
kill()
link()
listen()
lseek()
lstat()
mkdir()
mkfifo()
open()
pathconf()
pause()
pipe()
poll()
posix_trace_event()
pselect()
raise()
read()
readlink()
recv()
recvfrom()
recvmsg()
rename()
rmdir()
select()
sem_post()
send()
sendmsg()
sendto()
setgid()
setpgid()
setsid()
setsockopt()
setuid()
shutdown()
sigaction()
sigaddset()
sigdelset()
sigemptyset()
sigfillset()
sigismember()
signal()
sigpause()
sigpending()
sigprocmask()
sigqueue()
sigset()
sigsuspend()
sleep()
socket()
socketpair()
stat()
symlink()
sysconf()
tcdrain()
tcflow()
tcflush()
tcgetattr()
tcgetpgrp()
tcsendbreak()
tcsetattr()
tcsetpgrp()
time()
timer_getoverrun()
timer_gettime()
timer_settime()
times()
umask()
uname()
unlink()
utime()
wait()
waitpid()
write().
.PP
According to POSIX, the behaviour of a process is undefined after it
ignores a
.BR SIGFPE ,
.BR SIGILL ,
or
.B SIGSEGV
signal that was not generated by the
.BR kill (2)
or the
.BR raise (3)
functions.
Integer division by zero has undefined result.
On some architectures it will generate a
.B SIGFPE
signal.
(Also dividing the most negative integer by \-1 may generate
.BR SIGFPE .)
Ignoring this signal might lead to an endless loop.
.PP
According to POSIX (3.3.1.3) it is unspecified what happens when
.B SIGCHLD
is set to
.BR SIG_IGN .
Here the BSD and SYSV behaviours differ, causing BSD software
that sets the action for
.B SIGCHLD
to
.B SIG_IGN
to fail on Linux.
.PP
The use of
.B sighandler_t
is a GNU extension.
Various versions of libc predefine this type; libc4 and libc5 define
.IR SignalHandler ,
glibc defines
.I sig_t
and, when
.B _GNU_SOURCE
is defined, also
.IR sighandler_t .
.SH "CONFORMING TO"
ANSI C
.SH "SEE ALSO"
.BR kill (1),
.BR alarm (2),
.BR kill (2),
.BR killpg (2),
.BR pause (2),
.BR sigaction (2),
.BR sigvec (2),
.BR raise (3),
.BR sigsetops (3),
.BR signal (7)