Home | History | Annotate | Download | only in rtl

Lines Matching refs:newact

1816   sigaction_t newact;
1817 internal_memcpy(&newact, act, sizeof(newact));
1818 REAL(sigfillset)(&newact.sa_mask);
1820 if (newact.sa_flags & SA_SIGINFO)
1821 newact.sa_sigaction = rtl_sigaction;
1823 newact.sa_handler = rtl_sighandler;
1825 int res = REAL(sigaction)(sig, &newact, 0);