| /src/games/hack/ |
| hack.ioctl.c | 96 #ifdef SIGTSTP 97 if (signal(SIGTSTP, SIG_IGN) == SIG_DFL) { 99 (void) signal(SIGTSTP, SIG_DFL); 100 (void) kill(0, SIGTSTP); 107 #else /* SIGTSTP */ 108 pline("Sorry, it seems we have no SIGTSTP here. Try ! or S."); 109 #endif /* SIGTSTP */
|
| /src/distrib/utils/more/ |
| signal.c | 63 #ifdef SIGTSTP 73 #ifdef SIGTSTP 82 (void)signal(SIGTSTP, stop); 139 #ifdef SIGTSTP 140 (void)signal(SIGTSTP, stop); 155 #ifdef SIGTSTP 156 (void)signal(SIGTSTP, SIG_DFL); 197 #ifdef SIGTSTP 214 (void)signal(SIGTSTP, SIG_DFL); 215 (void)kill(getpid(), SIGTSTP); [all...] |
| /src/games/warp/ |
| sig.h | 13 #ifdef SIGTSTP
|
| sig.c | 51 #ifdef SIGTSTP 52 sigset(SIGTSTP, stop_catcher); 57 #ifdef SIGTSTP 76 #ifdef SIGTSTP 77 kill(0,SIGTSTP); 131 #ifdef SIGTSTP 201 #ifdef SIGTSTP 213 sigset(SIGTSTP,SIG_DFL); /* enable stop */ 215 sigsetmask(sigblock(0L) & ~sigmask(SIGTSTP)); 217 kill(0,SIGTSTP); /* and do the stop * [all...] |
| /src/games/larn/ |
| signal.c | 66 #ifdef SIGTSTP 75 signal(SIGTSTP, SIG_DFL); 81 sigsetmask(sigblock(0) & ~BIT(SIGTSTP)); 83 kill(getpid(), SIGTSTP); 86 signal(SIGTSTP, tstop); 94 #endif /* SIGTSTP */ 116 #ifdef SIGTSTP 117 signal(SIGTSTP, tstop); 119 #endif /* SIGTSTP */
|
| /src/sys/compat/linux/arch/arm/ |
| linux_sigarray.c | 55 SIGTSTP,
|
| /src/sys/compat/linux/arch/m68k/ |
| linux_sigarray.c | 55 SIGTSTP,
|
| /src/lib/librumpuser/ |
| rumpuser_sigtrans.c | 77 #ifdef SIGTSTP 78 case 18 : return SIGTSTP;
|
| /src/lib/libedit/ |
| sig.h | 51 _DO(SIGTSTP) \
|
| /src/sys/compat/linux/arch/alpha/ |
| linux_sigarray.c | 53 SIGTSTP,
|
| /src/sys/compat/linux/arch/mips/ |
| linux_sigarray.c | 62 SIGTSTP,
|
| /src/sys/compat/linux/arch/powerpc/ |
| linux_sigarray.c | 55 SIGTSTP, /* 20 */
|
| /src/sys/compat/linux/arch/i386/ |
| linux_sigarray.c | 55 SIGTSTP, /* 20 */
|
| /src/sys/compat/linux/arch/amd64/ |
| linux_sigarray.c | 57 SIGTSTP, /* 20 */
|
| /src/games/tetris/ |
| screen.c | 171 sigaddset(&nsigset, SIGTSTP); 174 if ((tstp = signal(SIGTSTP, stopset)) == SIG_IGN) 175 (void) signal(SIGTSTP, SIG_IGN); 221 (void) signal(SIGTSTP, scr_stop); 239 sigaddset(&nsigset, SIGTSTP); 257 (void) signal(SIGTSTP, tstp); 302 sigaddset(&nsigset, SIGTSTP);
|
| /src/usr.bin/talk/ |
| init_disp.c | 65 (void)sigaction(SIGTSTP, NULL, &sa); 67 (void)sigaction(SIGTSTP, &sa, NULL);
|
| /src/lib/libcurses/ |
| tstp.c | 86 /* Unblock SIGTSTP. */ 88 (void)sigaddset(&set, SIGTSTP); 92 (void)kill(0, SIGTSTP); 112 otstpfn = signal(SIGTSTP, __stop_signal_handler); 126 (void)signal(SIGTSTP, otstpfn); 208 /* To allow both SIGTSTP and endwin() to come back nicely, we provide 262 /* Reset the curses SIGTSTP and SIGWINCH signal handlers. */
|
| /src/sys/compat/linux/arch/aarch64/ |
| linux_sigarray.c | 50 /* 20 */ [LINUX_SIGTSTP] = SIGTSTP,
|
| /src/usr.bin/systat/ |
| main.c | 193 sv_stop_handler = signal(SIGTSTP, stop); 354 signal(SIGTSTP, sv_stop_handler); 355 /* unblock SIGTSTP */ 357 sigaddset(&set, SIGTSTP); 360 kill(0, SIGTSTP); 362 signal(SIGTSTP, stop);
|
| /src/games/boggle/boggle/ |
| mach.c | 209 #ifdef SIGTSTP 575 signal(SIGTSTP, stop_catcher); 592 signal(SIGTSTP, SIG_DFL); 594 sigaddset(&isigset, SIGTSTP); 596 kill(0, SIGTSTP); 598 signal(SIGTSTP, stop_catcher);
|
| /src/sbin/reboot/ |
| reboot.c | 191 (void)signal(SIGTSTP, SIG_IGN); 200 if (kill(1, SIGTSTP) == -1) 201 err(1, "SIGTSTP init");
|
| /src/tests/lib/libc/sys/ |
| t_fork.c | 155 || (sig == SIGTSTP || sig == SIGTTIN || sig == SIGTTOU) 215 case SIGTSTP: 227 case SIGTSTP: 258 RAISE(raise3, SIGTSTP) /* ignored in vfork(2) */
|
| /src/usr.bin/telnet/ |
| sys_bsd.c | 379 (void) signal(SIGTSTP, susp); 412 (void) signal(SIGTSTP, SIG_DFL); 413 (void) sigsetmask(sigblock(0) & ~(1<<(SIGTSTP-1))); 529 (void) signal(SIGTSTP, susp);
|
| /src/usr.bin/qsubst/ |
| qsubst.c | 160 kill(getpid(), SIGTSTP); 161 old_tstp = signal(SIGTSTP, SIG_DFL); 162 sigsetmask(mask & ~sigmask(SIGTSTP)); 163 signal(SIGTSTP, old_tstp); 168 sigtstp(int sig) function in typeref:typename:void 569 signal(SIGTSTP, sigtstp);
|
| /src/games/sail/ |
| dr_main.c | 69 signal(SIGTSTP, SIG_IGN);
|