1*8269e767SBrooks Davis.\" Copyright (c) 1983, 1991, 1993 2*8269e767SBrooks Davis.\" The Regents of the University of California. All rights reserved. 3*8269e767SBrooks Davis.\" 4*8269e767SBrooks Davis.\" Redistribution and use in source and binary forms, with or without 5*8269e767SBrooks Davis.\" modification, are permitted provided that the following conditions 6*8269e767SBrooks Davis.\" are met: 7*8269e767SBrooks Davis.\" 1. Redistributions of source code must retain the above copyright 8*8269e767SBrooks Davis.\" notice, this list of conditions and the following disclaimer. 9*8269e767SBrooks Davis.\" 2. Redistributions in binary form must reproduce the above copyright 10*8269e767SBrooks Davis.\" notice, this list of conditions and the following disclaimer in the 11*8269e767SBrooks Davis.\" documentation and/or other materials provided with the distribution. 12*8269e767SBrooks Davis.\" 3. Neither the name of the University nor the names of its contributors 13*8269e767SBrooks Davis.\" may be used to endorse or promote products derived from this software 14*8269e767SBrooks Davis.\" without specific prior written permission. 15*8269e767SBrooks Davis.\" 16*8269e767SBrooks Davis.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 17*8269e767SBrooks Davis.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18*8269e767SBrooks Davis.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19*8269e767SBrooks Davis.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 20*8269e767SBrooks Davis.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21*8269e767SBrooks Davis.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22*8269e767SBrooks Davis.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23*8269e767SBrooks Davis.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24*8269e767SBrooks Davis.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25*8269e767SBrooks Davis.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26*8269e767SBrooks Davis.\" SUCH DAMAGE. 27*8269e767SBrooks Davis.\" 28*8269e767SBrooks Davis.Dd May 7, 2010 29*8269e767SBrooks Davis.Dt SIGPROCMASK 2 30*8269e767SBrooks Davis.Os 31*8269e767SBrooks Davis.Sh NAME 32*8269e767SBrooks Davis.Nm sigprocmask 33*8269e767SBrooks Davis.Nd manipulate current signal mask 34*8269e767SBrooks Davis.Sh LIBRARY 35*8269e767SBrooks Davis.Lb libc 36*8269e767SBrooks Davis.Sh SYNOPSIS 37*8269e767SBrooks Davis.In signal.h 38*8269e767SBrooks Davis.Ft int 39*8269e767SBrooks Davis.Fo sigprocmask 40*8269e767SBrooks Davis.Fa "int how" 41*8269e767SBrooks Davis.Fa "const sigset_t * restrict set" 42*8269e767SBrooks Davis.Fa "sigset_t * restrict oset" 43*8269e767SBrooks Davis.Fc 44*8269e767SBrooks Davis.Sh DESCRIPTION 45*8269e767SBrooks DavisThe 46*8269e767SBrooks Davis.Fn sigprocmask 47*8269e767SBrooks Davissystem call examines and/or changes the current signal mask (those signals 48*8269e767SBrooks Davisthat are blocked from delivery). 49*8269e767SBrooks DavisSignals are blocked if they are members of the current signal mask set. 50*8269e767SBrooks Davis.Pp 51*8269e767SBrooks DavisIf 52*8269e767SBrooks Davis.Fa set 53*8269e767SBrooks Davisis not null, the action of 54*8269e767SBrooks Davis.Fn sigprocmask 55*8269e767SBrooks Davisdepends on the value of the 56*8269e767SBrooks Davis.Fa how 57*8269e767SBrooks Davisargument. 58*8269e767SBrooks DavisThe signal mask is changed as a function of the specified 59*8269e767SBrooks Davis.Fa set 60*8269e767SBrooks Davisand the current mask. 61*8269e767SBrooks DavisThe function is specified by 62*8269e767SBrooks Davis.Fa how 63*8269e767SBrooks Davisusing one of the following values from 64*8269e767SBrooks Davis.In signal.h : 65*8269e767SBrooks Davis.Bl -tag -width SIG_UNBLOCK 66*8269e767SBrooks Davis.It Dv SIG_BLOCK 67*8269e767SBrooks DavisThe new mask is the union of the current mask and the specified 68*8269e767SBrooks Davis.Fa set . 69*8269e767SBrooks Davis.It Dv SIG_UNBLOCK 70*8269e767SBrooks DavisThe new mask is the intersection of the current mask 71*8269e767SBrooks Davisand the complement of the specified 72*8269e767SBrooks Davis.Fa set . 73*8269e767SBrooks Davis.It Dv SIG_SETMASK 74*8269e767SBrooks DavisThe current mask is replaced by the specified 75*8269e767SBrooks Davis.Fa set . 76*8269e767SBrooks Davis.El 77*8269e767SBrooks Davis.Pp 78*8269e767SBrooks DavisIf 79*8269e767SBrooks Davis.Fa oset 80*8269e767SBrooks Davisis not null, it is set to 81*8269e767SBrooks Davisthe previous value of the signal mask. 82*8269e767SBrooks DavisWhen 83*8269e767SBrooks Davis.Fa set 84*8269e767SBrooks Davisis null, 85*8269e767SBrooks Davisthe value of 86*8269e767SBrooks Davis.Fa how 87*8269e767SBrooks Davisis insignificant and the mask remains unset 88*8269e767SBrooks Davisproviding a way to examine the signal mask without modification. 89*8269e767SBrooks Davis.Pp 90*8269e767SBrooks DavisThe system 91*8269e767SBrooks Davisquietly disallows 92*8269e767SBrooks Davis.Dv SIGKILL 93*8269e767SBrooks Davisor 94*8269e767SBrooks Davis.Dv SIGSTOP 95*8269e767SBrooks Davisto be blocked. 96*8269e767SBrooks Davis.Pp 97*8269e767SBrooks DavisIn threaded applications, 98*8269e767SBrooks Davis.Xr pthread_sigmask 3 99*8269e767SBrooks Davismust be used instead of 100*8269e767SBrooks Davis.Fn sigprocmask . 101*8269e767SBrooks Davis.Sh RETURN VALUES 102*8269e767SBrooks Davis.Rv -std sigprocmask 103*8269e767SBrooks Davis.Sh ERRORS 104*8269e767SBrooks DavisThe 105*8269e767SBrooks Davis.Fn sigprocmask 106*8269e767SBrooks Davissystem call will fail and the signal mask will be unchanged if one 107*8269e767SBrooks Davisof the following occurs: 108*8269e767SBrooks Davis.Bl -tag -width Er 109*8269e767SBrooks Davis.It Bq Er EINVAL 110*8269e767SBrooks DavisThe 111*8269e767SBrooks Davis.Fa how 112*8269e767SBrooks Davisargument 113*8269e767SBrooks Davishas a value other than those listed here. 114*8269e767SBrooks Davis.El 115*8269e767SBrooks Davis.Sh SEE ALSO 116*8269e767SBrooks Davis.Xr kill 2 , 117*8269e767SBrooks Davis.Xr sigaction 2 , 118*8269e767SBrooks Davis.Xr sigpending 2 , 119*8269e767SBrooks Davis.Xr sigsuspend 2 , 120*8269e767SBrooks Davis.Xr fpsetmask 3 , 121*8269e767SBrooks Davis.Xr pthread_sigmask 3 , 122*8269e767SBrooks Davis.Xr sigsetops 3 123*8269e767SBrooks Davis.Sh STANDARDS 124*8269e767SBrooks DavisThe 125*8269e767SBrooks Davis.Fn sigprocmask 126*8269e767SBrooks Davissystem call is expected to 127*8269e767SBrooks Davisconform to 128*8269e767SBrooks Davis.St -p1003.1-90 . 129