OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / man2 / sigsuspend.2
1 .\" Copyright (c) 2005 Michael Kerrisk
2 .\" based on earlier work by faith@cs.unc.edu and
3 .\" Mike Battersby <mib@deakin.edu.au>
4 .\"
5 .\" %%%LICENSE_START(VERBATIM)
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
9 .\"
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
14 .\"
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein.  The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
21 .\" professionally.
22 .\"
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" %%%LICENSE_END
26 .\"
27 .\" 2005-09-15, mtk, Created new page by splitting off from sigaction.2
28 .\"
29 .TH SIGSUSPEND 2 2013-04-19 "Linux" "Linux Programmer's Manual"
30 .SH NAME
31 sigsuspend \- wait for a signal
32 .SH SYNOPSIS
33 .B #include <signal.h>
34 .sp
35 .BI "int sigsuspend(const sigset_t *" mask );
36 .sp
37 .in -4n
38 Feature Test Macro Requirements for glibc (see
39 .BR feature_test_macros (7)):
40 .in
41 .sp
42 .ad l
43 .BR sigsuspend ():
44 _POSIX_C_SOURCE\ >=\ 1 || _XOPEN_SOURCE || _POSIX_SOURCE
45 .ad b
46 .SH DESCRIPTION
47 .BR sigsuspend ()
48 temporarily replaces the signal mask of the calling process with the
49 mask given by
50 .I mask
51 and then suspends the process until delivery of a signal whose
52 action is to invoke a signal handler or to terminate a process.
53
54 If the signal terminates the process, then
55 .BR sigsuspend ()
56 does not return.
57 If the signal is caught, then
58 .BR sigsuspend ()
59 returns after the signal handler returns,
60 and the signal mask is restored to the state before the call to
61 .BR sigsuspend ().
62
63 It is not possible to block
64 .B SIGKILL
65 or
66 .BR SIGSTOP ;
67 specifying these signals in
68 .IR mask ,
69 has no effect on the process's signal mask.
70 .SH RETURN VALUE
71 .BR sigsuspend ()
72 always returns \-1, with
73 .I errno
74 set to indicate the error (normally,
75 .BR EINTR ).
76 .SH ERRORS
77 .TP
78 .B EFAULT
79 .I mask
80 points to memory which is not a valid part of the process address space.
81 .TP
82 .B EINTR
83 The call was interrupted by a signal.
84 .SH CONFORMING TO
85 POSIX.1-2001.
86 .SH NOTES
87 .PP
88 Normally,
89 .BR sigsuspend ()
90 is used in conjunction with
91 .BR sigprocmask (2)
92 in order to prevent delivery of a signal during the execution of a
93 critical code section.
94 The caller first blocks the signals with
95 .BR sigprocmask (2).
96 When the critical code has completed, the caller then waits for the
97 signals by calling
98 .BR sigsuspend ()
99 with the signal mask that was returned by
100 .BR sigprocmask (2)
101 (in the
102 .I oldset
103 argument).
104 .PP
105 See
106 .BR sigsetops (3)
107 for details on manipulating signal sets.
108 .SH SEE ALSO
109 .BR kill (2),
110 .BR pause (2),
111 .BR sigaction (2),
112 .BR signal (2),
113 .BR sigprocmask (2),
114 .BR sigwaitinfo (2),
115 .BR sigsetops (3),
116 .BR sigwait (3),
117 .BR signal (7)
118 .SH COLOPHON
119 This page is part of release 3.68 of the Linux
120 .I man-pages
121 project.
122 A description of the project,
123 information about reporting bugs,
124 and the latest version of this page,
125 can be found at
126 \%http://www.kernel.org/doc/man\-pages/.