Lines Matching refs:how
55 typedef int (*SigprocmaskFunc)(int how, const sigset_t *restrict set, sigset_t *restrict oldset);
56 typedef int (*PthreadSigmaskFunc)(int how, const sigset_t *restrict set, sigset_t *restrict oldset);
76 int pthread_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict oldset)
81 ((how == SIG_BLOCK) || (how == SIG_SETMASK))) {
92 return g_hookedPthreadSigmask(how, set, oldset);
95 int sigprocmask(int how, const sigset_t *restrict set, sigset_t *restrict oldset)
100 ((how == SIG_BLOCK) || (how == SIG_SETMASK))) {
109 return g_hookedSigprocmask(how, set, oldset);