Searched refs:newact (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/lib/libthr/thread/
H A Dthr_sig.c520 struct sigaction newact, oldact, oldact2; local
539 newact = *act;
548 if (newact.sa_handler != SIG_DFL &&
549 newact.sa_handler != SIG_IGN) {
550 usa->sigact = newact;
552 newact.sa_flags &= ~SA_NODEFER;
553 newact.sa_flags |= SA_SIGINFO;
554 newact.sa_sigaction = thr_sighandler;
555 newact.sa_mask = _thr_maskset; /* mask all signals */
557 ret = __sys_sigaction(sig, &newact,
[all...]
/freebsd-11-stable/contrib/ntp/libntp/
H A Dmachines.c270 struct sigaction newact; local
309 newact.sa_handler = &setitimer_mpe_handler;
310 newact.sa_mask = setitimer_mpe_ctx.oldact.sa_mask;
311 newact.sa_flags = setitimer_mpe_ctx.oldact.sa_flags;
313 if (sigaction(SIGALRM, &newact, NULL) < 0) {
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp2361 __sanitizer_sigaction newact; local
2377 internal_memcpy(&newact, act, sizeof(newact));
2378 internal_sigfillset(&newact.sa_mask);
2380 if (newact.sa_flags & SA_SIGINFO)
2381 newact.sigaction = rtl_sigaction;
2383 newact.handler = rtl_sighandler;
2386 act = &newact;

Completed in 78 milliseconds