]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/sigwait.3
sigwaitinfo.2: Note treatment of signals used internally by NPTL
[thirdparty/man-pages.git] / man3 / sigwait.3
CommitLineData
e95c1726
MK
1.\" Copyright (c) 2008, Linux Foundation, written by Michael Kerrisk
2.\" <mtk.manpages@gmail.com>
3.\"
93015253 4.\" %%%LICENSE_START(VERBATIM)
e95c1726
MK
5.\" Permission is granted to make and distribute verbatim copies of this
6.\" manual provided the copyright notice and this permission notice are
7.\" preserved on all copies.
8.\"
9.\" Permission is granted to copy and distribute modified versions of this
10.\" manual under the conditions for verbatim copying, provided that the
11.\" entire resulting derived work is distributed under the terms of a
12.\" permission notice identical to this one.
13.\"
14.\" Since the Linux kernel and libraries are constantly changing, this
15.\" manual page may be incorrect or out-of-date. The author(s) assume no
16.\" responsibility for errors or omissions, or for damages resulting from
17.\" the use of the information contained herein. The author(s) may not
18.\" have taken the same level of care in the production of this manual,
19.\" which is licensed free of charge, as they might when working
20.\" professionally.
21.\"
22.\" Formatted or processed versions of this manual, if unaccompanied by
23.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 24.\" %%%LICENSE_END
e95c1726 25.\"
fe0fefbf 26.TH SIGWAIT 3 2015-03-02 "Linux" "Linux Programmer's Manual"
e95c1726
MK
27.SH NAME
28sigwait \- wait for a signal
29.SH SYNOPSIS
30.nf
31.B #include <signal.h>
32
33.BI " int sigwait(const sigset_t *" set ", int *" sig );
34.fi
0f200f07
MK
35.sp
36.in -4n
37Feature Test Macro Requirements for glibc (see
38.BR feature_test_macros (7)):
39.in
40.sp
41.ad l
42.BR sigwait ():
43_POSIX_C_SOURCE\ >=\ 1 || _XOPEN_SOURCE || _POSIX_SOURCE
44.ad b
e95c1726
MK
45.SH DESCRIPTION
46The
47.BR sigwait ()
5011ecfd
MK
48function suspends execution of the calling thread until
49one of the signals specified in the signal set
50.IR set
51becomes pending.
e95c1726
MK
52The function accepts the signal
53(removes it from the pending list of signals),
54and returns the signal number in
a3dadfe8 55.IR sig .
e95c1726
MK
56
57The operation of
58.BR sigwait ()
59is the same as
0b80cf56 60.BR sigwaitinfo (2),
e95c1726
MK
61except that:
62.IP * 2
63.BR sigwait ()
33a0ccb2 64returns only the signal number, rather than a
e95c1726
MK
65.I siginfo_t
66structure describing the signal.
67.IP *
68The return values of the two functions are different.
69.SH RETURN VALUE
70On success,
71.BR sigwait ()
72returns 0.
535f0df5 73On error, it returns a positive error number (listed in ERRORS).
e95c1726
MK
74.SH ERRORS
75.TP
76.B EINVAL
77.\" Does not occur for glibc.
78.I set
79contains an invalid signal number.
598a7a2d 80.SH ATTRIBUTES
8e09ed53
PH
81For an explanation of the terms used in this section, see
82.BR attributes (7).
83.TS
84allbox;
85lb lb lb
86l l l.
87Interface Attribute Value
88T{
598a7a2d 89.BR sigwait ()
8e09ed53
PH
90T} Thread safety MT-Safe
91.TE
e95c1726
MK
92.SH CONFORMING TO
93POSIX.1-2001.
94.SH NOTES
95.BR sigwait ()
96is implemented using
97.BR sigtimedwait (2).
44a720e3 98.SH EXAMPLE
cf499212
MK
99See
100.BR pthread_sigmask (3).
e95c1726 101.SH SEE ALSO
e95c1726
MK
102.BR sigaction (2),
103.BR signalfd (2),
104.BR sigpending (2),
105.BR sigsuspend (2),
106.BR sigwaitinfo (2),
107.BR sigsetops (3),
108.BR signal (7)