OSDN Git Service

(split) LDP: Update original to LDP v3.54
[linuxjm/LDP_man-pages.git] / original / man3 / sigwait.3
1 .\" Copyright (c) 2008, Linux Foundation, written by Michael Kerrisk
2 .\"     <mtk.manpages@gmail.com>
3 .\"
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.
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.
24 .\" %%%LICENSE_END
25 .\"
26 .TH SIGWAIT 3 2012-07-21 "Linux" "Linux Programmer's Manual"
27 .SH NAME
28 sigwait \- 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
35 .sp
36 .in -4n
37 Feature 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
45 .SH DESCRIPTION
46 The
47 .BR sigwait ()
48 function suspends execution of the calling thread until
49 one of the signals specified in the signal set
50 .IR set
51 becomes pending.
52 The function accepts the signal
53 (removes it from the pending list of signals),
54 and returns the signal number in
55 .IR sig .
56
57 The operation of
58 .BR sigwait ()
59 is the same as
60 .BR sigwaitinfo (2),
61 except that:
62 .IP * 2
63 .BR sigwait ()
64 returns only the signal number, rather than a
65 .I siginfo_t
66 structure describing the signal.
67 .IP *
68 The return values of the two functions are different.
69 .SH RETURN VALUE
70 On success,
71 .BR sigwait ()
72 returns 0.
73 On error, it returns a positive error number (listed in ERRORS).
74 .SH ERRORS
75 .TP
76 .B EINVAL
77 .\" Does not occur for glibc.
78 .I set
79 contains an invalid signal number.
80 .SH CONFORMING TO
81 POSIX.1-2001.
82 .SH NOTES
83 .BR sigwait ()
84 is implemented using
85 .BR sigtimedwait (2).
86 .SH EXAMPLE
87 See
88 .BR pthread_sigmask (3).
89 .SH SEE ALSO
90 .BR sigaction (2),
91 .BR signalfd (2),
92 .BR sigpending (2),
93 .BR sigsuspend (2),
94 .BR sigwaitinfo (2),
95 .BR sigsetops (3),
96 .BR signal (7)