OSDN Git Service

2ef471d6e1e2150ab3b892a6bfe115efee30793a
[linuxjm/LDP_man-pages.git] / original / man2 / sigprocmask.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 SIGPROCMASK 2 2013-04-19 "Linux" "Linux Programmer's Manual"
30 .SH NAME
31 sigprocmask \- examine and change blocked signals
32 .SH SYNOPSIS
33 .B #include <signal.h>
34 .sp
35 .BI "int sigprocmask(int " how ", const sigset_t *" set ,
36 .BI "sigset_t *" oldset );
37 .sp
38 .in -4n
39 Feature Test Macro Requirements for glibc (see
40 .BR feature_test_macros (7)):
41 .in
42 .sp
43 .ad l
44 .BR sigprocmask ():
45 _POSIX_C_SOURCE\ >=\ 1 || _XOPEN_SOURCE || _POSIX_SOURCE
46 .ad b
47 .SH DESCRIPTION
48 .BR sigprocmask ()
49 is used to fetch and/or change the signal mask of the calling thread.
50 The signal mask is the set of signals whose delivery is currently
51 blocked for the caller
52 (see also
53 .BR signal (7)
54 for more details).
55
56 The behavior of the call is dependent on the value of
57 .IR how ,
58 as follows.
59 .TP
60 .B SIG_BLOCK
61 The set of blocked signals is the union of the current set and the
62 .I set
63 argument.
64 .TP
65 .B SIG_UNBLOCK
66 The signals in
67 .I set
68 are removed from the current set of blocked signals.
69 It is permissible to attempt to unblock a signal which is not blocked.
70 .TP
71 .B SIG_SETMASK
72 The set of blocked signals is set to the argument
73 .IR set .
74 .PP
75 If
76 .I oldset
77 is non-NULL, the previous value of the signal mask is stored in
78 .IR oldset .
79
80 If
81 .I set
82 is NULL, then the signal mask is unchanged (i.e.,
83 .I how
84 is ignored),
85 but the current value of the signal mask is nevertheless returned in
86 .I oldset
87 (if it is not NULL).
88
89 The use of
90 .BR sigprocmask ()
91 is unspecified in a multithreaded process; see
92 .BR pthread_sigmask (3).
93 .SH RETURN VALUE
94 .BR sigprocmask ()
95 returns 0 on success and \-1 on error.
96 In the event of an error,
97 .I errno
98 is set to indicate the cause.
99 .SH ERRORS
100 .TP
101 .B EFAULT
102 the
103 .I set
104 or
105 .I oldset
106 argument points outside the process's allocated address space.
107 .TP
108 .B EINVAL
109 The value specified in
110 .I how
111 was invalid.
112 .SH CONFORMING TO
113 POSIX.1-2001.
114 .SH NOTES
115 It is not possible to block
116 .BR SIGKILL " or " SIGSTOP .
117 Attempts to do so are silently ignored.
118
119 Each of the threads in a process has its own signal mask.
120
121 A child created via
122 .BR fork (2)
123 inherits a copy of its parent's signal mask;
124 the signal mask is preserved across
125 .BR execve (2).
126
127 If
128 .BR SIGBUS ,
129 .BR SIGFPE ,
130 .BR SIGILL ,
131 or
132 .B SIGSEGV
133 are generated
134 while they are blocked, the result is undefined,
135 unless the signal was generated by
136 .BR kill (2),
137 .BR sigqueue (3),
138 or
139 .BR raise (3).
140 .PP
141 See
142 .BR sigsetops (3)
143 for details on manipulating signal sets.
144 .SH SEE ALSO
145 .BR kill (2),
146 .BR pause (2),
147 .BR sigaction (2),
148 .BR signal (2),
149 .BR sigpending (2),
150 .BR sigsuspend (2),
151 .BR pthread_sigmask (3),
152 .BR sigqueue (3),
153 .BR sigsetops (3),
154 .BR signal (7)
155 .SH COLOPHON
156 This page is part of release 3.67 of the Linux
157 .I man-pages
158 project.
159 A description of the project,
160 information about reporting bugs,
161 and the latest version of this page,
162 can be found at
163 \%http://www.kernel.org/doc/man\-pages/.