HomeSort by: relevance | last modified time | path
    Searched refs:SIGQUIT (Results 1 - 25 of 191) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/distrib/utils/zcat/
misc.c 6 kill(0, SIGQUIT);
9 kill(0, SIGQUIT);
12 kill(0, SIGQUIT);
15 kill(0, SIGQUIT);
  /src/external/gpl2/xcvs/dist/src/
exithandle.c 31 #ifdef SIGQUIT
32 (void) SIG_register (SIGQUIT, handler);
run.c 301 (void) sigaction (SIGQUIT, &act, &qact);
307 (void) sigaddset (&sigset_mask, SIGQUIT);
317 (void) sigvec (SIGQUIT, &vec, &qvec);
320 mask = sigblock (sigmask (SIGINT) | sigmask (SIGQUIT));
323 qstat = signal (SIGQUIT, SIG_IGN);
364 (void) sigaction (SIGQUIT, &qact, NULL);
373 (void) sigvec (SIGQUIT, &qvec, NULL);
379 (void) signal (SIGQUIT, qstat);
  /src/sys/compat/linux/arch/arm/
linux_sigarray.c 38 SIGQUIT,
  /src/sys/compat/linux/arch/m68k/
linux_sigarray.c 38 SIGQUIT,
  /src/lib/librumpuser/
rumpuser_sigtrans.c 32 #ifdef SIGQUIT
33 case 3 : return SIGQUIT;
  /src/external/gpl2/texinfo/dist/info/
signals.c 80 #if defined (SIGQUIT)
81 sigaddset (set, SIGQUIT);
143 #if defined (SIGQUIT)
144 set_termsig (SIGQUIT, &old_QUIT);
207 #if defined (SIGQUIT)
208 case SIGQUIT:
222 #if defined (SIGQUIT)
223 if (sig == SIGQUIT)
225 #endif /* SIGQUIT */
  /src/lib/libc/stdlib/
system.c 80 if (sigaction(SIGQUIT, &sa, &quitsa) == -1) {
89 sigaction(SIGQUIT, &quitsa, NULL);
95 * default, except possibly SIGINT and SIGQUIT. These we have
98 * - If the caller had SIGINT or SIGQUIT at SIG_IGN, then we
110 sigaddset(&sigdefault, SIGQUIT);
137 sigaction(SIGQUIT, &quitsa, NULL);
  /src/lib/libedit/
sig.h 52 _DO(SIGQUIT) \
  /src/sys/compat/linux/arch/alpha/
linux_sigarray.c 38 SIGQUIT,
  /src/sys/compat/linux/arch/mips/
linux_sigarray.c 41 SIGQUIT,
  /src/sys/compat/linux/arch/powerpc/
linux_sigarray.c 38 SIGQUIT,
  /src/games/larn/
signal.c 43 signal(SIGQUIT, SIG_IGN);
51 signal(SIGQUIT, cntlc);
102 signal(SIGQUIT, cntlc);
  /src/games/warp/
sig.c 35 sigset(SIGQUIT, sig_catcher);
169 signo = SIGQUIT;
170 if (signo == SIGQUIT) { /* can't let them bomb out without penalty */
180 if (signo != SIGHUP && signo != SIGQUIT) {
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtilDarwin.cpp 61 if (sigaction(SIGQUIT, &IgnoreSignalAction, &OldSigQuitAction) == -1) {
62 Printf("Failed to ignore SIGQUIT\n");
75 (void)sigaction(SIGQUIT, &OldSigQuitAction, NULL);
92 (void)sigaddset(&DefaultSigSet, SIGQUIT);
145 if (sigaction(SIGQUIT, &OldSigQuitAction, NULL) == -1) {
146 Printf("Failed to restore SIGQUIT handling\n");
  /src/external/bsd/less/dist/
signal.c 168 #ifdef SIGQUIT
169 (void) LSIGNAL(SIGQUIT, SIG_IGN);
193 #ifdef SIGQUIT
194 (void) LSIGNAL(SIGQUIT, SIG_DFL);
  /src/external/gpl3/gcc.old/dist/libgfortran/runtime/
compile_options.c 45 #if defined(SIGQUIT)
46 case SIGQUIT:
47 name = "SIGQUIT";
168 #if defined(SIGQUIT)
169 signal (SIGQUIT, backtrace_handler);
  /src/sys/compat/linux/arch/amd64/
linux_sigarray.c 40 SIGQUIT, /* 3 */
  /src/sys/compat/linux/arch/i386/
linux_sigarray.c 38 SIGQUIT, /* 3 */
  /src/external/cddl/osnet/lib/libdtrace/
signal.d 33 inline int SIGQUIT = 3;
34 #pragma D binding "1.0" SIGQUIT
  /src/external/bsd/am-utils/dist/amd/
amd.c 139 * SIGQUIT signal from the child. When the parent gets the signal it's
143 * Worse, the parent process now refuses to accept any more SIGQUIT
171 sigaddset(&(sa.sa_mask), SIGQUIT);
172 sigaction(SIGQUIT, &sa, &osa);
174 signal(SIGQUIT, parent_exit);
189 sigaction(SIGQUIT, &osa, NULL);
191 signal(SIGQUIT, SIG_DFL);
  /src/sbin/fsck/
fsutil.c 287 (void)signal(SIGQUIT, SIG_DFL);
301 (void)signal(SIGQUIT, SIG_IGN);
302 (void)signal(SIGQUIT, SIG_DFL);
  /src/external/cddl/osnet/dist/tools/ctf/cvt/
ctfconvert.c 164 sighold(SIGQUIT);
230 sigset(SIGQUIT, handle_sig);
234 signal(SIGQUIT, handle_sig);
  /src/external/gpl3/gcc.old/dist/gcc/
collect-utils.cc 65 #ifdef SIGQUIT
66 if (signal (SIGQUIT, SIG_IGN) != SIG_IGN)
67 signal (SIGQUIT, fatal_signal);
  /src/tests/lib/libc/sys/
t_wait.c 220 ATF_REQUIRE(kill(pid, SIGQUIT) == 0);
223 ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGQUIT);
226 ATF_REQUIRE(si.si_status == SIGQUIT);
286 ATF_REQUIRE(kill(pid, SIGQUIT) == 0);
289 ATF_REQUIRE(WIFSIGNALED(st) && WTERMSIG(st) == SIGQUIT);
292 ATF_REQUIRE(si.si_status == SIGQUIT);

Completed in 47 milliseconds

1 2 3 4 5 6 7 8