Searched refs:oactp (Results 1 – 1 of 1) sorted by relevance
| /f-stack/freebsd/kern/ |
| H A D | kern_sig.c | 845 struct sigaction *actp, *oactp; in sys_sigaction() local 849 oactp = (uap->oact != NULL) ? &oact : NULL; in sys_sigaction() 855 error = kern_sigaction(td, uap->sig, actp, oactp, 0); in sys_sigaction() 856 if (oactp && !error) in sys_sigaction() 857 error = copyout(oactp, uap->oact, sizeof(oact)); in sys_sigaction() 873 struct sigaction *actp, *oactp; in freebsd4_sigaction() local 877 oactp = (uap->oact != NULL) ? &oact : NULL; in freebsd4_sigaction() 883 error = kern_sigaction(td, uap->sig, actp, oactp, KSA_FREEBSD4); in freebsd4_sigaction() 884 if (oactp && !error) in freebsd4_sigaction() 885 error = copyout(oactp, uap->oact, sizeof(oact)); in freebsd4_sigaction()
|