Home | History | Annotate | Download | only in rtl

Lines Matching refs:newact

1935   sigaction_t newact;
1936 internal_memcpy(&newact, act, sizeof(newact));
1937 internal_sigfillset(&newact.sa_mask);
1939 if (newact.sa_flags & SA_SIGINFO)
1940 newact.sa_sigaction = rtl_sigaction;
1942 newact.sa_handler = rtl_sighandler;
1945 int res = REAL(sigaction)(sig, &newact, 0);