|
NAMEpthread_sigmask —
examine and/or change a thread's signal mask
LIBRARYPOSIX Threads Library (libpthread, -lpthread)SYNOPSIS#include <pthread.h>
#include <signal.h>
int
DESCRIPTIONThepthread_sigmask () function examines and/or changes
the calling thread's signal mask.
If set is not
If oset is not NULL, the previous signal mask is stored in the location pointed to by oset.
RETURN VALUESIf successful,pthread_sigmask () returns 0. Otherwise,
an error is returned.
ERRORSThepthread_sigmask () function will fail if:
SEE ALSOsigaction(2), sigpending(2), sigprocmask(2), sigsuspend(2), sigsetops(3)STANDARDSThepthread_sigmask () function conforms to
ISO/IEC 9945-1:1996 (“POSIX.1”)
Visit the GSP FreeBSD Man Page Interface. |