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

1 2 3 4 5 6 7 8 91011

  /src/sys/compat/linux/arch/arm/
linux_sigarray.c 37 SIGINT,
  /src/sys/compat/linux/arch/m68k/
linux_sigarray.c 37 SIGINT,
  /src/lib/libc/stdlib/
system.c 78 if (sigaction(SIGINT, &sa, &intsa) == -1)
81 sigaction(SIGINT, &intsa, NULL);
88 sigaction(SIGINT, &intsa, NULL);
95 * default, except possibly SIGINT and SIGQUIT. These we have
98 * - If the caller had SIGINT or SIGQUIT at SIG_IGN, then we
108 sigaddset(&sigdefault, SIGINT);
136 out: sigaction(SIGINT, &intsa, NULL);
  /src/lib/librumpuser/
rumpuser_sigtrans.c 29 #ifdef SIGINT
30 case 2 : return SIGINT;
  /src/lib/libedit/
sig.h 50 _DO(SIGINT) \
  /src/sys/compat/linux/arch/alpha/
linux_sigarray.c 37 SIGINT,
  /src/sys/compat/linux/arch/mips/
linux_sigarray.c 40 SIGINT,
  /src/sys/compat/linux/arch/powerpc/
linux_sigarray.c 37 SIGINT,
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtilDarwin.cpp 56 if (sigaction(SIGINT, &IgnoreSignalAction, &OldSigIntAction) == -1) {
57 Printf("Failed to ignore SIGINT\n");
64 (void)sigaction(SIGINT, &OldSigIntAction, NULL);
76 (void)sigaction(SIGINT, &OldSigIntAction, NULL);
93 (void)sigaddset(&DefaultSigSet, SIGINT);
141 if (sigaction(SIGINT, &OldSigIntAction, NULL) == -1) {
142 Printf("Failed to restore SIGINT handling\n");
  /src/games/larn/
signal.c 44 signal(SIGINT, SIG_IGN);
52 signal(SIGINT, cntlc);
103 signal(SIGINT, cntlc);
  /src/games/hangman/
main.c 79 signal(SIGINT, die);
  /src/games/mille/
mille.c 101 signal(SIGINT, rub);
143 (void)signal(SIGINT, SIG_IGN);
146 (void)signal(SIGINT, rub);
156 (void)signal(SIGINT, SIG_IGN);
  /src/usr.bin/mail/
collect.c 72 static int hadintr; /* Have seen one SIGINT so far */
135 (void)sig_ignore(SIGINT, &osa, &oset);
142 (void)sig_restore(SIGINT, &osa, &oset);
163 (void)sig_ignore(SIGINT, &osa, &oset);
198 (void)sig_restore(SIGINT, &osa, &oset);
307 sig_t o = signal(SIGINT, SIG_IGN);
317 signal(SIGINT, o);
321 signal(SIGINT, o);
329 signal(SIGINT, o);
364 sig_t volatile old_sigint = sig_current(SIGINT);
    [all...]
  /src/games/phantasia/
io.c 124 signal(SIGINT, SIG_IGN);
127 signal(SIGINT, SIG_IGN);
161 signal(SIGINT, interrupt);
164 signal(SIGINT, interrupt);
  /src/sys/compat/linux/arch/i386/
linux_sigarray.c 37 SIGINT, /* 2 */
  /src/usr.sbin/puffs/rump_ext2fs/
rump_ext2fs.c 53 puffs_unmountonsignal(SIGINT, true);
  /src/usr.sbin/puffs/rump_ffs/
rump_ffs.c 53 puffs_unmountonsignal(SIGINT, true);
  /src/usr.sbin/puffs/rump_msdos/
rump_msdos.c 53 puffs_unmountonsignal(SIGINT, true);
  /src/usr.sbin/puffs/rump_nfs/
rump_nfs.c 51 puffs_unmountonsignal(SIGINT, true);
  /src/usr.sbin/puffs/rump_sysvbfs/
rump_sysvbfs.c 51 puffs_unmountonsignal(SIGINT, true);
  /src/usr.sbin/puffs/rump_udf/
rump_udf.c 53 puffs_unmountonsignal(SIGINT, true);
  /src/usr.sbin/puffs/rump_v7fs/
rump_v7fs.c 51 puffs_unmountonsignal(SIGINT, true);
  /src/sys/compat/linux/arch/amd64/
linux_sigarray.c 39 SIGINT, /* 2 */
  /src/distrib/utils/more/
signal.c 138 (void)signal(SIGINT, purgeandquit);
154 (void)signal(SIGINT, SIG_DFL);
  /src/sbin/fsck_msdos/
main.c 118 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
119 (void) signal(SIGINT, catch);

Completed in 20 milliseconds

1 2 3 4 5 6 7 8 91011