Home
last modified time | relevance | path

Searched refs:oact (Results 1 – 14 of 14) sorted by relevance

/dragonfly/contrib/nvi2/cl/
HDcl_main.c290 setsig(SIGHUP, &clp->oact[INDX_HUP], h_hup) || in sig_init()
292 setsig(SIGINT, &clp->oact[INDX_INT], h_int) || in sig_init()
294 setsig(SIGTERM, &clp->oact[INDX_TERM], h_term) in sig_init()
298 setsig(SIGWINCH, &clp->oact[INDX_WINCH], h_winch) in sig_init()
350 (void)sigaction(SIGHUP, NULL, &clp->oact[INDX_HUP]); in sig_end()
351 (void)sigaction(SIGINT, NULL, &clp->oact[INDX_INT]); in sig_end()
352 (void)sigaction(SIGTERM, NULL, &clp->oact[INDX_TERM]); in sig_end()
354 (void)sigaction(SIGWINCH, NULL, &clp->oact[INDX_WINCH]); in sig_end()
HDcl.h50 struct sigaction oact[INDX_MAX]; member
/dragonfly/contrib/bmake/
HDsigaction.c191 struct sigaction *oact) in sigaction() argument
202 if (oact) { in sigaction()
217 if (oact) { in sigaction()
218 oact->sa_handler = oldh; in sigaction()
HDsigcompat.c169 struct sigaction act, oact; in signal() local
177 n = sigaction(sig, &act, &oact); in signal()
181 return (oact.sa_handler); in signal()
/dragonfly/contrib/gcc-4.7/libgcc/config/i386/
HDcrtfastmath.c76 struct sigaction act, oact; in set_fast_math() local
82 sigaction (SIGILL, &act, &oact); in set_fast_math()
88 sigaction (SIGILL, &oact, NULL); in set_fast_math()
/dragonfly/usr.bin/cmp/
HDregular.c59 struct sigaction act, oact; in c_regular() local
97 if (sigaction(SIGSEGV, &act, &oact)) in c_regular()
142 if (sigaction(SIGSEGV, &oact, NULL)) in c_regular()
/dragonfly/sys/kern/
HDkern_sig.c258 kern_sigaction(int sig, struct sigaction *act, struct sigaction *oact) in kern_sigaction() argument
270 if (oact) { in kern_sigaction()
271 oact->sa_handler = ps->ps_sigact[_SIG_IDX(sig)]; in kern_sigaction()
272 oact->sa_mask = ps->ps_catchmask[_SIG_IDX(sig)]; in kern_sigaction()
273 oact->sa_flags = 0; in kern_sigaction()
275 oact->sa_flags |= SA_ONSTACK; in kern_sigaction()
277 oact->sa_flags |= SA_RESTART; in kern_sigaction()
279 oact->sa_flags |= SA_RESETHAND; in kern_sigaction()
281 oact->sa_flags |= SA_NODEFER; in kern_sigaction()
283 oact->sa_flags |= SA_SIGINFO; in kern_sigaction()
[all …]
/dragonfly/contrib/ncurses/ncurses/tty/
HDlib_tstp.c142 sigaction_t act, oact; in handle_SIGTSTP() local
215 sigaction(SIGTSTP, &act, &oact); in handle_SIGTSTP()
221 sigaction(SIGTSTP, &oact, NULL); in handle_SIGTSTP()
/dragonfly/sbin/rconfig/
HDsubs.c123 struct sigaction oact; in udp_transact() local
128 sigaction(SIGALRM, &nact, &oact); in udp_transact()
132 sigaction(SIGALRM, &oact, NULL); in udp_transact()
/dragonfly/usr.sbin/pppctl/
HDpppctl.c207 struct sigaction act, oact; in main() local
350 sigaction(SIGALRM, &act, &oact); in main()
358 sigaction(SIGALRM, &oact, 0); in main()
375 sigaction(SIGALRM, &oact, 0); in main()
/dragonfly/contrib/tnftp/src/
HDprogressbar.c434 struct sigaction act, oact;
442 if (sigaction(sig, &act, &oact) < 0)
444 return (oact.sa_handler);
/dragonfly/lib/libthread_xu/thread/
HDthr_sig.c153 _sigaction(int sig, const struct sigaction * act, struct sigaction * oact) in _sigaction() argument
162 return __sys_sigaction(sig, act, oact); in _sigaction()
/dragonfly/sys/sys/
HDkern_syscall.h88 int kern_sigaction(int sig, struct sigaction *act, struct sigaction *oact);
HDsysproto.h852 struct sigaction * oact; char oact_[PAD_(struct sigaction *)]; member