Searched defs:oact (Results 1 - 12 of 12) sorted by relevance

/osnet-11/usr/src/lib/libc/port/sys/
H A Dbsd_signal.c50 struct sigaction oact; local
59 if (sigaction(sig, &nact, &oact) == -1)
62 return (oact.sa_handler);
H A Dsignal.c68 struct sigaction oact; local
89 if (sigaction(sig, &nact, &oact) < 0)
92 return (oact.sa_handler);
186 struct sigaction oact; local
200 if (sigaction(sig, (struct sigaction *)0, &oact) < 0)
219 if (sigaction(sig, &nact, &oact) < 0)
231 return (oact.sa_handler);
/osnet-11/usr/src/lib/libproc/common/
H A Dpr_sigaction.c45 int sig, const struct sigaction *act, struct sigaction *oact)
57 return (sigaction(sig, act, oact));
91 adp++; /* oact argument */
93 if (oact == NULL) {
106 adp->arg_object = oact;
107 adp->arg_size = sizeof (*oact);
110 adp->arg_object = oact;
111 adp->arg_size = sizeof (*oact);
122 if (oact != NULL && Pstatus(Pr)->pr_dmodel == PR_MODEL_ILP32)
123 sigaction_32_to_n(&oact32, oact);
44 pr_sigaction(struct ps_prochandle *Pr, int sig, const struct sigaction *act, struct sigaction *oact) argument
[all...]
/osnet-11/usr/src/lib/libpkg/common/
H A Dpkgexecv.c143 struct sigaction oact; local
226 if (sigaction(SIGINT, &nact, &oact) < 0) {
229 funcSigint = oact.sa_handler;
238 if (sigaction(SIGHUP, &nact, &oact) < 0) {
241 funcSighup = oact.sa_handler;
H A Dpkgtrans.c637 struct sigaction oact; local
654 if (sigaction(SIGINT, &nact, &oact) < 0) {
657 sigintHandler = oact.sa_handler;
666 if (sigaction(SIGHUP, &nact, &oact) < 0) {
669 sighupHandler = oact.sa_handler;
/osnet-11/usr/src/lib/libwrap/
H A Drfc931.c94 struct sigaction nact, oact; local
129 (void) sigaction(SIGALRM, &nact, &oact);
189 (void) sigaction(SIGALRM, &oact, NULL);
/osnet-11/usr/src/lib/libc/port/gen/
H A Datexit.c164 struct sigaction oact; local
182 if (__sigaction(sig, NULL, &oact) == 0 &&
183 oact.sa_handler != SIG_DFL &&
184 oact.sa_handler != SIG_IGN)
/osnet-11/usr/src/lib/libinstzones/common/
H A Dzones_exec.c676 struct sigaction oact; local
879 if (sigaction(SIGINT, &nact, &oact) < 0) {
882 funcSigint = oact.sa_handler;
891 if (sigaction(SIGHUP, &nact, &oact) < 0) {
894 funcSighup = oact.sa_handler;
/osnet-11/usr/src/lib/libc/port/threads/
H A Dsigaction.c367 sigaction(int sig, const struct sigaction *nact, struct sigaction *oact) argument
442 if ((rv = __sigaction(sig, tactp, oact)) != 0)
444 else if (oact != NULL &&
445 oact->sa_sigaction != SIG_DFL &&
446 oact->sa_sigaction != SIG_IGN)
447 *oact = oaction;
/osnet-11/usr/src/lib/brand/solaris10/s10_brand/common/
H A Ds10_signal.c441 int sig, const struct sigaction *act, struct sigaction *oact)
451 sig, act, oact);
466 sig, act, oact);
471 osigactp = ((oact == NULL) ? NULL : &osigact);
509 * here if the oact parameter is bad.
520 if (err == 0 && brand_uucopy(osigactp, oact,
440 s10_sigaction(sysret_t *rval, int sig, const struct sigaction *act, struct sigaction *oact) argument
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_cc.c1592 struct sigaction act, oact; local
1661 (void) sigaction(SIGCHLD, &act, &oact);
1664 (void) sigaction(SIGCHLD, &oact, NULL);
1680 (void) sigaction(SIGCHLD, &oact, NULL);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dutil.c2222 struct sigaction act, oact; local
2241 if (sigaction(signo, &act, &oact) == -1)
2244 return oact.sa_handler;
2250 struct sigaction oact; local
2252 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2255 return oact.sa_handler;

Completed in 83 milliseconds