Lines Matching refs:newset
180 thr_remove_thr_signals(const sigset_t *set, sigset_t *newset) in thr_remove_thr_signals() argument
182 *newset = *set; in thr_remove_thr_signals()
183 remove_thr_signals(newset); in thr_remove_thr_signals()
184 return (newset); in thr_remove_thr_signals()
642 sigset_t newset; in __thr_sigprocmask() local
646 newset = *set; in __thr_sigprocmask()
647 SIGDELSET(newset, SIGCANCEL); in __thr_sigprocmask()
648 p = &newset; in __thr_sigprocmask()
669 sigset_t newset; in _sigsuspend() local
671 return (__sys_sigsuspend(thr_remove_thr_signals(set, &newset))); in _sigsuspend()
678 sigset_t newset; in __thr_sigsuspend() local
686 ret = __sys_sigsuspend(thr_remove_thr_signals(set, &newset)); in __thr_sigsuspend()
691 SIGEMPTYSET(newset); in __thr_sigsuspend()
692 SIGADDSET(newset, SIGCANCEL); in __thr_sigsuspend()
693 __sys_sigprocmask(SIG_UNBLOCK, &newset, NULL); in __thr_sigsuspend()
703 sigset_t newset; in _sigtimedwait() local
705 return (__sys_sigtimedwait(thr_remove_thr_signals(set, &newset), info, in _sigtimedwait()
719 sigset_t newset; in __thr_sigtimedwait() local
723 ret = __sys_sigtimedwait(thr_remove_thr_signals(set, &newset), info, in __thr_sigtimedwait()
732 sigset_t newset; in _sigwaitinfo() local
734 return (__sys_sigwaitinfo(thr_remove_thr_signals(set, &newset), info)); in _sigwaitinfo()
746 sigset_t newset; in __thr_sigwaitinfo() local
750 ret = __sys_sigwaitinfo(thr_remove_thr_signals(set, &newset), info); in __thr_sigwaitinfo()
758 sigset_t newset; in _sigwait() local
760 return (__sys_sigwait(thr_remove_thr_signals(set, &newset), sig)); in _sigwait()
772 sigset_t newset; in __thr_sigwait() local
777 ret = __sys_sigwait(thr_remove_thr_signals(set, &newset), sig); in __thr_sigwait()