/titanic_41/usr/src/ucblib/libcurses/ |
H A D | tstp.c | 36 #ifdef SIGTSTP in tstp() 48 (void) signal(SIGTSTP, SIG_DFL); in tstp() 49 (void) sigsetmask(sigblock(0) &~ sigmask(SIGTSTP)); in tstp() 50 (void) kill(0, SIGTSTP); in tstp() 51 (void) sigblock(sigmask(SIGTSTP)); in tstp() 52 (void) signal(SIGTSTP, (void(*)(int))tstp); in tstp()
|
H A D | initscr.c | 54 #ifdef SIGTSTP in initscr() 55 (void) signal(SIGTSTP, (void(*)(int))tstp); in initscr()
|
/titanic_41/usr/src/lib/libcurses/screen/ |
H A D | initscr.c | 67 #ifdef SIGTSTP in initscr() 94 #ifdef SIGTSTP in initscr() 96 if ((savsignal = signal(SIGTSTP, SIG_IGN)) == SIG_DFL) in initscr() 97 (void) signal(SIGTSTP, _tstp); in initscr() 99 (void) signal(SIGTSTP, savsignal); in initscr()
|
H A D | tstp.c | 52 #ifdef SIGTSTP 63 (void) kill(0, SIGTSTP); in _tstp() 64 (void) signal(SIGTSTP, _tstp); in _tstp()
|
/titanic_41/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | newterm.c | 87 #ifdef SIGTSTP 102 (void) sigaddset(&unblock, SIGTSTP); 106 (void) signal(SIGTSTP, SIG_DFL); 107 (void) kill(0, SIGTSTP); 112 (void) signal(SIGTSTP, tstp); 330 #ifdef SIGTSTP 331 (void) signal(SIGTSTP, tstp);
|
H A D | endwin.c | 80 (void) signal(SIGTSTP, SIG_DFL); in endwin()
|
/titanic_41/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | newterm.c | 89 #ifdef SIGTSTP in tstp() 105 (void) sigaddset(&unblock, SIGTSTP); in tstp() 110 (void) signal(SIGTSTP, SIG_DFL); in tstp() 111 (void) kill(0, SIGTSTP); in tstp() 116 (void) signal(SIGTSTP, tstp); in tstp() 325 #ifdef SIGTSTP in newterm() 326 (void) signal(SIGTSTP, tstp); in newterm()
|
H A D | endwin.c | 82 (void) signal(SIGTSTP, SIG_DFL); in endwin()
|
/titanic_41/usr/src/lib/libast/common/misc/ |
H A D | signal.c | 100 #if defined(SIGIO) || defined(SIGTSTP) || defined(SIGTTIN) || defined(SIGTTOU) in signal() 104 #if defined(SIGTSTP) in signal() 105 case SIGTSTP: in signal()
|
H A D | sigcrit.c | 53 #ifdef SIGTSTP 54 SIGTSTP, SIG_REG_TERM,
|
/titanic_41/usr/src/lib/libshell/common/sh/ |
H A D | jobs.c | 150 #ifdef SIGTSTP 322 #ifdef SIGTSTP in job_reap() 507 #ifndef SIGTSTP in job_init() 518 #ifdef SIGTSTP in job_init() 523 #ifdef SIGTSTP in job_init() 572 #ifdef SIGTSTP in job_init() 587 signal(SIGTSTP,sh_fault); in job_init() 650 # ifdef SIGTSTP in job_close() 697 #ifdef SIGTSTP in job_set() 708 #ifdef SIGTSTP in job_reset() [all …]
|
H A D | fault.c | 175 #ifdef SIGTSTP in sh_fault() 176 if(sig==SIGTSTP) in sh_fault() 508 #ifdef SIGTSTP in sh_exit() 513 shp->sigflag[SIGTSTP] = 0; in sh_exit() 529 shp->sigflag[SIGTSTP] = 0; in sh_exit() 531 shp->exitval = (SH_EXITSIG|SIGTSTP); in sh_exit() 542 shp->sigflag[SIGTSTP] = 0; in sh_exit() 544 killpg(job.curpgid,SIGTSTP); in sh_exit()
|
/titanic_41/usr/src/lib/libbc/libc/sys/common/ |
H A D | signalmap.c | 157 case SIGTSTP: /* stop signal from tty */ in maptonewsig() 199 return (SIGTSTP); in maptooldsig() 243 omask |= sigmask(SIGTSTP); in maptooldmask() 287 if (omask & sigmask(SIGTSTP)) in maptonewmask()
|
/titanic_41/usr/src/cmd/ssh/libopenbsd-compat/common/ |
H A D | readpassphrase.c | 102 (void)sigaction(SIGTSTP, &sa, &savetstp); in readpassphrase() 153 (void)sigaction(SIGTSTP, &savetstp, NULL); in readpassphrase() 165 case SIGTSTP: in readpassphrase()
|
/titanic_41/usr/src/tools/cscope-fast/ |
H A D | exec.c | 116 oldsigtstp = signal(SIGTSTP, SIG_DFL); in myfork() 151 (void) signal(SIGTSTP, oldsigtstp); in join()
|
H A D | mypopen.c | 62 tstat = signal(SIGTSTP, SIG_DFL); in mypopen() 107 (void) signal(SIGTSTP, tstat); in mypclose()
|
/titanic_41/usr/src/lib/libc/port/stdio/ |
H A D | getpass.c | 91 (void) sigaction(SIGTSTP, &act, &osigtstp); /* ignore stop */ in __getpass() 110 (void) sigaction(SIGTSTP, &osigtstp, NULL); in __getpass()
|
/titanic_41/usr/src/cmd/vi/port/ |
H A D | ex_unix.c | 270 #ifdef SIGTSTP 272 signal(SIGTSTP, SIG_DFL); 349 #ifdef SIGTSTP 351 signal(SIGTSTP, onsusp);
|
H A D | ex_subr.c | 1049 #ifdef SIGTSTP in setrupt() 1051 signal(SIGTSTP, onsusp); in setrupt() 1093 #ifdef SIGTSTP 1115 signal(SIGTSTP, SIG_DFL); 1116 kill(0, SIGTSTP); 1120 signal(SIGTSTP, onsusp);
|
/titanic_41/usr/src/lib/libshell/common/include/ |
H A D | jobs.h | 51 # undef SIGTSTP 146 #ifdef SIGTSTP
|
/titanic_41/usr/src/cmd/mdb/common/mdb/ |
H A D | mdb_signal.c | 66 if (sig == SIGWINCH || sig == SIGTSTP) { in mdb_signal_sethandler() 68 (void) sigaddset(&act.sa_mask, SIGTSTP); in mdb_signal_sethandler()
|
/titanic_41/usr/src/cmd/more/ |
H A D | more.c | 162 #ifdef SIGTSTP 316 #ifdef SIGTSTP in main() 317 if (signal (SIGTSTP, SIG_IGN) == SIG_DFL) { in main() 318 signal(SIGTSTP, onsusp); in main() 1438 #ifdef SIGTSTP in execute() 1440 signal(SIGTSTP, SIG_DFL); in execute() 1446 #ifdef SIGTSTP in execute() 1448 signal(SIGTSTP, onsusp); in execute() 1786 #ifdef SIGTSTP 1798 kill (0, SIGTSTP); in onsusp() [all …]
|
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/telnet/ |
H A D | sys_bsd.c | 482 (void) signal(SIGTSTP, susp); 518 (void) signal(SIGTSTP, SIG_DFL); 520 (void) sigaddset(&nset, SIGTSTP); 687 (void) signal(SIGTSTP, susp); 712 (void) signal(SIGTSTP, susp); in sys_telnet_init()
|
/titanic_41/usr/src/lib/libshell/common/data/ |
H A D | aliases.c | 51 #ifdef SIGTSTP
|
/titanic_41/usr/src/lib/libast/common/features/ |
H A D | signal.c | 217 #ifdef SIGTSTP 219 "Stopped", "TSTP", SIGTSTP,
|