Lines Matching defs:newact
572 struct sigaction newact, oldact, oldact2;
591 newact = *act;
600 if (newact.sa_handler != SIG_DFL &&
601 newact.sa_handler != SIG_IGN) {
602 usa->sigact = newact;
604 newact.sa_flags &= ~SA_NODEFER;
605 newact.sa_flags |= SA_SIGINFO;
606 newact.sa_sigaction = thr_sighandler;
607 newact.sa_mask = _thr_maskset; /* mask all signals */
609 ret = __sys_sigaction(sig, &newact, &oldact);