HomeSort by: relevance | last modified time | path
    Searched defs:oact (Results 1 - 9 of 9) sorted by relevancy

  /src/lib/libc/gen/
signal.c 72 struct sigaction act, oact; local in function:bsd_signal
79 if (sigaction(sig, &act, &oact) < 0)
82 return (oact.sa_handler);
  /src/tests/fs/common/
fstest_ffs.c 64 struct sigaction act, oact; local in function:ffs_fstest_newfs
70 sigaction(SIGCHLD, &act, &oact);
72 sigaction(SIGCHLD, &oact, NULL);
fstest_udf.c 64 struct sigaction act, oact; local in function:udf_fstest_newfs
73 sigaction(SIGCHLD, &act, &oact);
75 sigaction(SIGCHLD, &oact, NULL);
  /src/lib/librefuse/
refuse_signals.c 160 struct sigaction oact; local in function:restore_signal_handler
166 if (sigaction(sig, NULL, &oact) != 0)
172 if (!(oact.sa_flags & SA_SIGINFO) || oact.sa_sigaction != handler)
176 if (oact.sa_handler != SIG_IGN)
  /src/tests/lib/libc/sys/
t_sigqueue.c 164 struct sigaction oact[CNT]; local in function:ATF_TC_BODY
173 ATF_REQUIRE(sigaction(ordered[i], &act, &oact[i]) != -1);
203 ATF_REQUIRE(sigaction(signals[i], &oact[i], NULL) != -1);
  /src/tests/lib/libpthread/
t_stack.c 212 struct sigaction act, oact; local in function:checksigsegv
221 RL(sigaction(SIGSEGV, &act, &oact));
222 oactsave = oact;
227 oact = oactsave;
229 RL(sigaction(SIGSEGV, &oact, NULL));
245 struct sigaction act, oact; local in function:checknosigsegv
254 RL(sigaction(SIGSEGV, &act, &oact));
255 oactsave = oact;
260 oact = oactsave;
262 RL(sigaction(SIGSEGV, &oact, NULL))
    [all...]
  /src/usr.bin/ftp/
progressbar.c 413 struct sigaction act, oact; local in function:xsignal
421 if (sigaction(sig, &act, &oact) < 0)
423 return (oact.sa_handler);
  /src/sys/dev/pci/
cmdide.c 206 uint oact = atomic_cas_uint(&sc->sc_cmd_act_channel, local in function:cmd064x_free_hw
210 KASSERT(oact == ochp->ch_channel);
215 if (i == oact)
  /src/bin/csh/
csh.c 203 struct sigaction oact; local in function:main
367 (void)sigaction(SIGINT, NULL, &oact);
368 parintr = oact.sa_handler;
369 (void)sigaction(SIGTERM, NULL, &oact);
370 parterm = oact.sa_handler;

Completed in 16 milliseconds