sigsetmask(2) DG/UX 4.30 sigsetmask(2)
NAME
sigsetmask - Specify set of blocked signals.
SYNOPSIS
#include <signal.h>
int sigsetmask (signal_mask)
int signal_mask;
PARAMETERS
signal_mask Set of signals to be blocked.
DESCRIPTION
Sigsetmask assigns the set of signals specified in
<signal_mask> to the set of signals blocked from
presentation. Signal "s" is represented by the value
"sigmask(s)" in <signal_mask>.
It is not possible to block SIGKILL, SIGSTOP, or SIGCONT.
It may or may not be possible to block signals that are not
defined by the system. An attempt to block these signals
will not produce an error.
ACCESS CONTROL
None.
RETURN VALUE
<old_signal_mask>
The previous set of signals being blocked
from presentation.
EXCEPTIONS
None.
SEE ALSO
The related system calls: kill, sigvec, sigblock, sigpause.
Licensed material--property of copyright holder(s) Page 1