Searched refs:oact (Results 1 - 16 of 16) sorted by relevance

/macosx-10.10.1/Libc-1044.1.2/emulated/
H A Dbsd_signal.c32 struct sigaction act, oact; local
40 if (sigaction(sig, &act, &oact) == -1)
43 return(oact.sa_handler);
/macosx-10.10.1/xnu-2782.1.97/tools/tests/libMicro/
H A Dsigaction.c83 struct sigaction oact; local
88 if (sigaction(SIGUSR1, &ts->ts_act, &oact))
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dposix_signals.c21 /* int sigaction(sig, act, oact)
24 /* struct sigaction *oact;
94 int sigaction(int sig, struct sigaction *act, struct sigaction *oact) argument
109 if (oact)
110 *oact = actions[sig];
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dsig.c221 struct sigaction act, oact; local
235 sigemptyset (&oact.sa_mask);
244 sigaction (XSIG (i), &act, &oact); local
245 XHANDLER(i) = oact.sa_handler;
246 XSAFLAGS(i) = oact.sa_flags;
251 sigaction (XSIG (i), &oact, &act); local
256 sigaction (XSIG (i), &oact, (struct sigaction *)NULL); local
599 struct sigaction act, oact; local
610 sigemptyset (&oact.sa_mask);
611 sigaction (sig, &act, &oact);
[all...]
H A Djobs.c2371 struct sigaction act, oact;
2379 sigemptyset (&oact.sa_mask);
2381 sigaction (SIGCHLD, &act, &oact);
2386 sigaction (SIGCHLD, &oact, (struct sigaction *)NULL);
/macosx-10.10.1/bash-94.1.2/bash-3.2/CWRU/misc/
H A Dsigstat.c63 struct sigaction oact; local
77 sigaction(sig, (struct sigaction *)NULL, &oact);
78 if (oact.sa_handler == SIG_IGN)
80 else if (oact.sa_handler == SIG_DFL)
/macosx-10.10.1/configd-699.1.5/scutil.tproj/
H A Dnotifications.c46 static struct sigaction *oact = NULL; variable in typeref:struct:sigaction
466 if (oact != NULL) {
467 (void) sigaction(osig, oact, NULL); /* restore original signal handler */
469 oact = malloc(sizeof(struct sigaction));
475 (void) sigaction(sig, &nact, oact);
514 if (oact != NULL) {
515 (void) sigaction(osig, oact, NULL); /* restore original signal handler */
516 free(oact);
517 oact = NULL;
/macosx-10.10.1/Libc-1044.1.2/compat-43/
H A Dsigcompat.c207 struct sigaction oact; local
219 if ((-1 == sigaction(sig, NULL, &oact)) ||
222 return (sig_t)oact.sa_handler;
/macosx-10.10.1/apr-32/apr/apr/threadproc/unix/
H A Dsignals.c76 struct sigaction act, oact; local
103 if (sigaction(signo, &act, &oact) < 0)
105 return oact.sa_handler;
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tty/
H A Dlib_tstp.c140 sigaction_t act, oact; local
208 sigaction(SIGTSTP, &act, &oact);
214 sigaction(SIGTSTP, &oact, NULL);
/macosx-10.10.1/tcsh-65/tcsh/win32/
H A Dsignal.c210 int sigaction(int signo, const struct sigaction *act, struct sigaction *oact) { argument
217 if(oact){
218 oact->sa_handler = handlers[signo];
219 oact->sa_mask = 0;
220 oact->sa_flags =0;
/macosx-10.10.1/lukemftp-14/tnftp/src/
H A Dprogressbar.c438 struct sigaction act, oact;
449 if (sigaction(sig, &act, &oact) < 0)
451 return (oact.sa_handler);
/macosx-10.10.1/emacs-93/emacs/src/s/
H A Ddgux.h249 extern struct sigaction act, oact;
/macosx-10.10.1/sudo-73/src/
H A Dmissing.h213 int sigaction __P((int sig, const sigaction_t *act, sigaction_t *oact));
/macosx-10.10.1/dtrace-147/cmd/
H A Ddtrace_1.c1406 struct sigaction act, oact; local
2067 if (sigaction(SIGINT, NULL, &oact) == 0 && oact.sa_handler != SIG_IGN)
2070 if (sigaction(SIGTERM, NULL, &oact) == 0 && oact.sa_handler != SIG_IGN)
/macosx-10.10.1/dtrace-147/libdtrace/
H A Ddt_cc.c1960 struct sigaction act, oact; local
2038 (void) sigaction(SIGCHLD, &act, &oact);
2041 (void) sigaction(SIGCHLD, &oact, NULL);
2057 (void) sigaction(SIGCHLD, &oact, NULL);

Completed in 144 milliseconds