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

/freebsd-11-stable/contrib/ncurses/ncurses/tty/
H A Dlib_tstp.c308 sigaction_t new_act; local
310 memset(&new_act, 0, sizeof(new_act));
311 sigemptyset(&new_act.sa_mask);
316 new_act.sa_flags |= SA_RESTART;
318 new_act.sa_handler = handler;
327 (void) sigaction(sig, &new_act, NULL);
/freebsd-11-stable/contrib/file/src/
H A Dcompress.c280 struct sigaction new_act; local
281 memset(&new_act, 0, sizeof(new_act));
282 new_act.sa_handler = SIG_IGN;
283 sa_saved = sigaction(SIGPIPE, &new_act, &sig_act) != -1;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp1383 __sanitizer_sigaction new_act; local
1384 __sanitizer_sigaction *pnew_act = act ? &new_act : nullptr;

Completed in 192 milliseconds