1 .\" Copyright (c) 2008, Linux Foundation, written by Michael Kerrisk
2 .\" <mtk.manpages@gmail.com>
4 .\" %%%LICENSE_START(VERBATIM)
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.
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.
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
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
26 .TH SIGWAIT 3 2020-06-09 "Linux" "Linux Programmer's Manual"
28 sigwait \- wait for a signal
31 .B #include <signal.h>
33 .BI " int sigwait(const sigset_t *" set ", int *" sig );
37 Feature Test Macro Requirements for glibc (see
38 .BR feature_test_macros (7)):
44 _POSIX_C_SOURCE >= 199506L
45 Glibc 2.25 and earlier:
51 function suspends execution of the calling thread until
52 one of the signals specified in the signal set
55 The function accepts the signal
56 (removes it from the pending list of signals),
57 and returns the signal number in
67 returns only the signal number, rather than a
69 structure describing the signal.
71 The return values of the two functions are different.
76 On error, it returns a positive error number (listed in ERRORS).
80 .\" Does not occur for glibc.
82 contains an invalid signal number.
84 For an explanation of the terms used in this section, see
92 Interface Attribute Value
95 T} Thread safety MT-Safe
101 POSIX.1-2001, POSIX.1-2008.
105 .BR sigtimedwait (2).
107 The glibc implementation of
109 silently ignores attempts to wait for the two real-time signals that
110 are used internally by the NPTL threading implementation.
116 .BR pthread_sigmask (3).