/src/tests/lib/libpthread/ |
t_siglongjmp.c | 87 PTHREAD_REQUIRE(pthread_sigmask(SIG_SETMASK, &nset, NULL)); 97 PTHREAD_REQUIRE(pthread_sigmask(0, NULL, &nset));
|
t_sigmask.c | 35 * Regression test for pthread_sigmask when SA upcalls aren't started yet. 64 atf_tc_set_md_var(tc, "descr", "Checks pthread_sigmask when SA upcalls " 77 pthread_sigmask(SIG_BLOCK, &nset, NULL); 235 PTHREAD_REQUIRE(pthread_sigmask(SIG_SETMASK, &act.sa_mask, NULL)); 242 PTHREAD_REQUIRE(pthread_sigmask(SIG_SETMASK, &act.sa_mask, NULL));
|
t_sleep.c | 89 PTHREAD_REQUIRE(pthread_sigmask(SIG_BLOCK, &mtsm, 0));
|
/src/lib/libpthread/ |
pthread_misc.c | 59 __strong_alias(__libc_thr_sigsetmask,pthread_sigmask) 60 __strong_alias(__sigprocmask14,pthread_sigmask) 165 pthread_sigmask(int how, const sigset_t *set, sigset_t *oset) function in typeref:typename:int
|
Makefile | 154 pthread_sigmask.3 pthread_spin.3 \
|
/src/include/ |
signal.h | 74 int pthread_sigmask(int, const sigset_t * __restrict, 80 #define pthread_sigmask __libc_thr_sigsetmask macro
|
/src/lib/librefuse/ |
refuse_signals.c | 75 * pthread_sigmask(3)) that we install a handler for, or otherwise it 109 return pthread_sigmask(SIG_BLOCK, &set, oset); 114 return pthread_sigmask(SIG_SETMASK, oset, NULL);
|
/src/lib/librumpclient/ |
rumpclient.c | 334 pthread_sigmask(SIG_SETMASK, mask, NULL); 335 pthread_sigmask(SIG_SETMASK, &fullset, NULL); 437 pthread_sigmask(SIG_SETMASK, &fullset, &omask); 468 pthread_sigmask(SIG_SETMASK, &omask, NULL); 583 pthread_sigmask(SIG_SETMASK, &fullset, &omask); 602 pthread_sigmask(SIG_SETMASK, &omask, NULL); 1003 pthread_sigmask(SIG_SETMASK, &fullset, &omask); 1022 pthread_sigmask(SIG_SETMASK, &omask, NULL);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/symbolizer/ |
sanitizer_wrappers.cc | 196 LLVM_SYMBOLIZER_INTERCEPTOR3(pthread_sigmask,
|
/src/tests/lib/libc/sys/ |
t_ptrace_lwp_wait.h | 53 pthread_sigmask(SIG_BLOCK, &s, NULL); 105 pthread_sigmask(SIG_BLOCK, &s, NULL);
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_interceptors.cc | 1878 TSAN_INTERCEPTOR(int, pthread_sigmask, int how, const __sanitizer_sigset_t *set, 1880 SCOPED_TSAN_INTERCEPTOR(pthread_sigmask, how, set, oldset); 1881 return REAL(pthread_sigmask)(how, set, oldset); 1956 int res = REAL(pthread_sigmask)(SIG_SETMASK, &sctx->emptyset, &sctx->oldset); 1966 res = REAL(pthread_sigmask)(SIG_SETMASK, &sctx->oldset, 0); 2761 TSAN_INTERCEPT(pthread_sigmask);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_mac.cc | 219 return pthread_sigmask(how, set, oldset);
|