Searched refs:osig (Results 1 – 5 of 5) sorted by relevance
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | bsd-pselect.c | 158 sigset_t osig; in pselect() local 195 sigprocmask(SIG_SETMASK, mask, &osig); in pselect() 198 sigprocmask(SIG_SETMASK, &osig, NULL); in pselect()
|
/freebsd/crypto/heimdal/kadmin/ |
H A D | util.c | 583 void (*osig)(int); in get_response() local 585 osig = signal(SIGINT, interrupt); in get_response() 587 signal(SIGINT, osig); in get_response() 597 signal(SIGINT, osig); in get_response() 605 signal(SIGINT, osig); in get_response()
|
/freebsd/sys/sys/ |
H A D | signalvar.h | 174 #define SIG2OSIG(sig, osig) (osig = (sig).__bits[0]) argument 175 #define OSIG2SIG(osig, sig) SIGEMPTYSET(sig); (sig).__bits[0] = osig argument
|
/freebsd/sys/kern/ |
H A D | vfs_aio.c | 1359 convert_old_sigevent(struct osigevent *osig, struct sigevent *nsig) in convert_old_sigevent() argument 1366 nsig->sigev_notify = osig->sigev_notify; in convert_old_sigevent() 1371 nsig->sigev_signo = osig->__sigev_u.__sigev_signo; in convert_old_sigevent() 1375 osig->__sigev_u.__sigev_notify_kqueue; in convert_old_sigevent() 1376 nsig->sigev_value.sival_ptr = osig->sigev_value.sival_ptr; in convert_old_sigevent() 2349 struct osigevent osig; in freebsd6_lio_listio() local 2360 error = copyin(uap->sig, &osig, sizeof(osig)); in freebsd6_lio_listio() 2363 error = convert_old_sigevent(&osig, &sig); in freebsd6_lio_listio() 2735 convert_old_sigevent32(struct osigevent32 *osig, struct sigevent *nsig) in convert_old_sigevent32() argument 2742 CP(*osig, *nsig, sigev_notify); in convert_old_sigevent32() [all …]
|
/freebsd/contrib/tcsh/ |
H A D | sh.c | 1147 struct sigaction osig; in main() local 1167 sigaction(SIGHUP, NULL, &osig); in main() 1168 if (loginsh || osig.sa_handler != SIG_IGN) in main() 1172 sigaction(SIGXCPU, NULL, &osig); in main() 1173 if (loginsh || osig.sa_handler != SIG_IGN) in main() 1178 sigaction(SIGXFSZ, NULL, &osig); in main() 1179 if (loginsh || osig.sa_handler != SIG_IGN) in main()
|