pthread_attr_getsigmask_np (3) Linux Manual Page
pthread_attr_setsigmask_np, pthread_attr_getsigmask_np – set/get signal mask attribute in thread attributes object Synopsis #define _GNU_SOURCE /* See feature_test_macros(7) */ #include <pthread.h> int pthread_attr_setsigmask_np(pthread_attr_t *attr, const sigset_t *sigmask); int pthread_attr_getsigmask_np(const pthread_attr_t *attr, sigset_t *sigmask); Compile and link with – pthread. Description The pthread_attr_setsigmask_np() function sets the signal mask attribute of the thread attributes object referred to by…
