Lines Matching full:act
212 struct sigaction act;
221 act = usa->sigact;
234 memcpy(&curthread->deferred_sigact, &act, sizeof(struct sigaction));
242 handle_signal(&act, sig, info, ucp);
366 * asynchronous cancellation mode, act upon
378 struct sigaction act;
395 act = curthread->deferred_sigact;
400 handle_signal(&act, info.si_signo, &info, uc);
456 struct sigaction act, nact, oact;
484 SIGFILLSET(act.sa_mask);
485 act.sa_flags = SA_SIGINFO;
486 act.sa_sigaction = (__siginfohandler_t *)&sigcancel_handler;
487 __sys_sigaction(SIGCANCEL, &act, NULL);
490 SIGEMPTYSET(act.sa_mask);
491 SIGADDSET(act.sa_mask, SIGCANCEL);
492 __sys_sigprocmask(SIG_UNBLOCK, &act.sa_mask, NULL);
570 __thr_sigaction(int sig, const struct sigaction *act, struct sigaction *oact)
589 if (act != NULL) {
591 newact = *act;
620 if (act != NULL)