Warning: main(/www/www/htdocs/style/globals.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/p/pthread_sigmask.html on line 1
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/globals.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/p/pthread_sigmask.html on line 1
Warning: main(/www/www/htdocs/style/header.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/p/pthread_sigmask.html on line 8
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/header.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/p/pthread_sigmask.html on line 8
Examine and change blocked signals
#include <signal.h>
int pthread_sigmask( int how,
const sigset_t* set,
sigset_t* oset );
- how
- How you want to change the signal mask; one of:
- SIG_BLOCK — make the resulting signal mask the
union of the current signal mask and the signal set set.
- SIG_UNBLOCK — make the resulting signal mask the
intersection of the current signal mask and the complement of the signal
set set.
- SIG_SETMASK — make the resulting signal mask the
signal set set.
This argument is valid only if set is non-NULL.
- set
- A pointer to a sigset_t object that specifies the
signals that you want to affect in the mask.
- oset
- NULL, or a pointer to a sigset_t object
where the function can store the thread's old signal mask.
libc
Use the -l c option to
qcc
to link against this library.
This library is usually included automatically.
The pthread_sigmask() function is used to examine and/or
change the calling thread's signal mask. If set is
non-NULL, the thread's signal mask is set to
set. If oset is non-NULL, the
thread's old signal mask is returned in oset.
You can't block the SIGKILL and SIGSTOP signals.
- EOK
- Success.
- EINVAL
- Invalid how parameter.
POSIX 1003.1 THR
Safety: | |
Cancellation point |
No |
Interrupt handler |
No |
Signal handler |
Yes |
Thread |
Yes |
kill(),
raise(),
sigaction(),
sigaddset(),
sigdelset(),
sigemptyset(),
sigfillset(),
sigismember(),
signal(),
SignalProcmask(),
sigpending(),
sigprocmask()
Warning: main(/www/www/htdocs/style/footer.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/p/pthread_sigmask.html on line 169
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/footer.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/p/pthread_sigmask.html on line 169