Lines Matching refs:nsa
97 syscallarg(const struct sigaction *) nsa;
102 struct sigaction nsa, osa;
105 if (SCARG(uap, nsa)) {
106 error = copyin(SCARG(uap, nsa), &nsa, sizeof(nsa));
111 SCARG(uap, nsa) ? &nsa : 0, SCARG(uap, osa) ? &osa : 0,
381 sigaction1(struct lwp *l, int signum, const struct sigaction *nsa,
412 if (nsa != NULL && nsa->sa_handler != SIG_IGN
413 && nsa->sa_handler != SIG_DFL) {
489 if (!nsa)
493 if ((nsa->sa_flags & ~SA_ALLBITS) || (prop & SA_CANTMASK)) {
498 sigaction_copy(&SIGACTION_PS(ps, signum), nsa);
507 if (nsa->sa_flags & SA_NOCLDSTOP)
511 if (nsa->sa_flags & SA_NOCLDWAIT) {
525 if (nsa->sa_handler == SIG_IGN) {
537 if ((nsa->sa_flags & SA_NODEFER) == 0)
548 if (nsa->sa_handler == SIG_IGN ||
549 (nsa->sa_handler == SIG_DFL && (prop & SA_IGNORE) != 0)) {
561 if (nsa->sa_handler == SIG_DFL)