]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/siginterrupt.3
Start of 2.59
[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)
29.TH SIGINTERRUPT 3 1993-04-13 "" "Linux Programmer's Manual"
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
38.SH DESCRIPTION
60a90ecd
MK
39The
40.BR siginterrupt ()
41function changes the restart behaviour when
c13182ef
MK
42a system call is interrupted by the signal \fIsig\fP.
43If the \fIflag\fP
44argument is false (0), then system calls will be restarted if interrupted
45by the specified signal \fIsig\fP.
46This is the default behaviour in Linux.
47However, when a new signal handler is specified with the
60a90ecd
MK
48.BR signal (2)
49function, the system call is interrupted by default.
fea681da
MK
50.PP
51If the \fIflags\fP argument is true (1) and no data has been transferred,
52then a system call interrupted by the signal \fIsig\fP will return \-1
53and the global variable \fIerrno\fP will be set to \fBEINTR\fP.
54.PP
55If the \fIflags\fP argument is true (1) and data transfer has started,
56then the system call will be interrupted and will return the actual
57amount of data transferred.
58.SH "RETURN VALUE"
60a90ecd
MK
59The
60.BR siginterrupt ()
61function returns 0 on success, or \-1 if the
fea681da
MK
62signal number \fIsig\fP is invalid.
63.SH ERRORS
64.TP
65.B EINVAL
66The specified signal number is invalid.
67.SH "CONFORMING TO"
68e1685c 684.3BSD, POSIX.1-2001.
fea681da
MK
69.SH "SEE ALSO"
70.BR signal (2)