OSDN Git Service

Import translated manuals from JM CVS Repository.
[linuxjm/jm.git] / manual / LDP_man-pages / original / man3 / siginterrupt.3
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.
11 .\"
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.
19 .\"
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 2009-03-15 "" "Linux Programmer's Manual"
30 .SH NAME
31 siginterrupt \- 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 .sp
39 .in -4n
40 Feature 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
46 .SH DESCRIPTION
47 The
48 .BR siginterrupt ()
49 function changes the restart behavior when
50 a system call is interrupted by the signal \fIsig\fP.
51 If the \fIflag\fP
52 argument is false (0), then system calls will be restarted if interrupted
53 by the specified signal \fIsig\fP.
54 This is the default behavior in Linux.
55 However, when a new signal handler is specified with the
56 .BR signal (2)
57 function, the system call is interrupted by default.
58 .PP
59 If the \fIflag\fP argument is true (1) and no data has been transferred,
60 then a system call interrupted by the signal \fIsig\fP will return \-1
61 and \fIerrno\fP will be set to
62 .BR EINTR .
63 .PP
64 If the \fIflag\fP argument is true (1) and data transfer has started,
65 then the system call will be interrupted and will return the actual
66 amount of data transferred.
67 .SH "RETURN VALUE"
68 The
69 .BR siginterrupt ()
70 function returns 0 on success, or \-1 if the
71 signal number \fIsig\fP is invalid.
72 .SH ERRORS
73 .TP
74 .B EINVAL
75 The specified signal number is invalid.
76 .SH "CONFORMING TO"
77 4.3BSD, POSIX.1-2001.
78 POSIX.1-2008 marks
79 .BR siginterrupt ()
80 as obsolete, recommending the use of
81 .BR sigaction (2)
82 with the
83 .B SA_RESTART
84 flag instead.
85 .SH "SEE ALSO"
86 .BR signal (2)