]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/siginterrupt.3
fflush.3: Minor rewordings
[thirdparty/man-pages.git] / man3 / siginterrupt.3
CommitLineData
fea681da
MK
1.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2.\"
3.\" Permission is granted to make and distribute verbatim copies of this
4.\" manual provided the copyright notice and this permission notice are
5.\" preserved on all copies.
6.\"
7.\" Permission is granted to copy and distribute modified versions of this
8.\" manual under the conditions for verbatim copying, provided that the
9.\" entire resulting derived work is distributed under the terms of a
10.\" permission notice identical to this one.
c13182ef 11.\"
fea681da
MK
12.\" Since the Linux kernel and libraries are constantly changing, this
13.\" manual page may be incorrect or out-of-date. The author(s) assume no
14.\" responsibility for errors or omissions, or for damages resulting from
15.\" the use of the information contained herein. The author(s) may not
16.\" have taken the same level of care in the production of this manual,
17.\" which is licensed free of charge, as they might when working
18.\" professionally.
c13182ef 19.\"
fea681da
MK
20.\" Formatted or processed versions of this manual, if unaccompanied by
21.\" the source, must acknowledge the copyright and authors of this work.
22.\"
23.\" References consulted:
24.\" Linux libc source code
25.\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26.\" 386BSD man pages
27.\" Modified Sun Jul 25 10:40:51 1993 by Rik Faith (faith@cs.unc.edu)
28.\" Modified Sun Apr 14 16:20:34 1996 by Andries Brouwer (aeb@cwi.nl)
cc4615cc 29.TH SIGINTERRUPT 3 2007-07-26 "" "Linux Programmer's Manual"
fea681da
MK
30.SH NAME
31siginterrupt \- allow signals to interrupt system calls
32.SH SYNOPSIS
33.nf
34.B #include <signal.h>
35.sp
36.BI "int siginterrupt(int " sig ", int " flag );
37.fi
cc4615cc
MK
38.sp
39.in -4n
40Feature Test Macro Requirements for glibc (see
41.BR feature_test_macros (7)):
42.in
43.sp
44.BR siginterrupt ():
45_BSD_SOURCE || _XOPEN_SOURCE\ >=\ 500
fea681da 46.SH DESCRIPTION
60a90ecd
MK
47The
48.BR siginterrupt ()
d9bfdb9c 49function changes the restart behavior when
c13182ef
MK
50a system call is interrupted by the signal \fIsig\fP.
51If the \fIflag\fP
52argument is false (0), then system calls will be restarted if interrupted
53by the specified signal \fIsig\fP.
d9bfdb9c 54This is the default behavior in Linux.
c13182ef 55However, when a new signal handler is specified with the
60a90ecd
MK
56.BR signal (2)
57function, the system call is interrupted by default.
fea681da 58.PP
055e4eb7 59If the \fIflag\fP argument is true (1) and no data has been transferred,
fea681da 60then a system call interrupted by the signal \fIsig\fP will return \-1
e859a67a 61and the global variable \fIerrno\fP will be set to
055e4eb7 62.BR EINTR .
fea681da 63.PP
055e4eb7 64If the \fIflag\fP argument is true (1) and data transfer has started,
fea681da
MK
65then the system call will be interrupted and will return the actual
66amount of data transferred.
67.SH "RETURN VALUE"
60a90ecd
MK
68The
69.BR siginterrupt ()
70function returns 0 on success, or \-1 if the
fea681da
MK
71signal number \fIsig\fP is invalid.
72.SH ERRORS
73.TP
74.B EINVAL
75The specified signal number is invalid.
76.SH "CONFORMING TO"
68e1685c 774.3BSD, POSIX.1-2001.
4b8234be
MK
78POSIX.1-2008 marks
79.BR siginterrupt ()
80as obsolete.
fea681da
MK
81.SH "SEE ALSO"
82.BR signal (2)