Searched refs:actp (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.1-release/lib/libthr/thread/
H A Dthr_sig.c187 handle_signal(struct sigaction *actp, int sig, siginfo_t *info, ucontext_t *ucp) argument
199 SIGSETOR(actp->sa_mask, ucp->uc_sigmask);
202 if (!(actp->sa_flags & SA_NODEFER))
203 SIGADDSET(actp->sa_mask, sig);
225 __sys_sigprocmask(SIG_SETMASK, &actp->sa_mask, NULL);
227 sigfunc = actp->sa_sigaction;
237 if ((actp->sa_flags & SA_SIGINFO) != 0)
420 struct sigaction *actp;
427 actp = &_thr_sigact[sig-1].sigact;
429 handler = actp
[all...]
/freebsd-10.1-release/sys/kern/
H A Dkern_sig.c809 register struct sigaction *actp, *oactp; local
812 actp = (uap->act != NULL) ? &act : NULL;
814 if (actp) {
815 error = copyin(uap->act, actp, sizeof(act));
819 error = kern_sigaction(td, uap->sig, actp, oactp, 0);
839 register struct sigaction *actp, *oactp; local
843 actp = (uap->act != NULL) ? &act : NULL;
845 if (actp) {
846 error = copyin(uap->act, actp, sizeof(act));
850 error = kern_sigaction(td, uap->sig, actp, oact
[all...]

Completed in 100 milliseconds