Searched refs:SIGTSTP (Results 1 - 25 of 73) sorted by relevance

123

/freebsd-9.3-release/contrib/less/
H A Dsignal.c69 #ifdef SIGTSTP
78 LSIGNAL(SIGTSTP, stop);
156 #ifdef SIGTSTP
157 (void) LSIGNAL(SIGTSTP, stop);
177 #ifdef SIGTSTP
178 (void) LSIGNAL(SIGTSTP, SIG_DFL);
205 #ifdef SIGTSTP
221 LSIGNAL(SIGTSTP, SIG_DFL);
222 kill(getpid(), SIGTSTP); local
229 LSIGNAL(SIGTSTP, sto
[all...]
/freebsd-9.3-release/contrib/texinfo/info/
H A Dsignals.c70 # if defined (SIGTSTP)
71 sigaddset (set, SIGTSTP);
131 #if defined (SIGTSTP)
132 set_termsig (SIGTSTP, &old_TSTP);
135 #endif /* SIGTSTP */
150 /* Used by DJGPP to simulate SIGTSTP on Ctrl-Z. */
200 #if defined (SIGTSTP)
201 case SIGTSTP:
212 #if defined (SIGTSTP)
213 if (sig == SIGTSTP)
[all...]
/freebsd-9.3-release/lib/libedit/
H A Dsig.h53 _DO(SIGTSTP) \
/freebsd-9.3-release/contrib/ncurses/ncurses/tty/
H A Dlib_tstp.c51 #if defined(SIGTSTP) && (HAVE_SIGACTION || HAVE_SIGVEC)
74 #ifdef SIGTSTP
75 case SIGTSTP:
76 return "SIGTSTP";
190 /* Unblock SIGTSTP. */
192 (void) sigaddset(&mask, SIGTSTP);
208 sigaction(SIGTSTP, &act, &oact);
209 kill(getpid(), SIGTSTP); local
214 sigaction(SIGTSTP, &oact, NULL);
339 * returning) to disable/enable the SIGTSTP (
[all...]
/freebsd-9.3-release/contrib/libreadline/
H A Dsignals.c86 SIGINT, SIGTERM, SIGQUIT, SIGALRM, SIGTSTP, SIGTTIN, and SIGTTOU. */
106 #if defined (SIGTSTP)
149 #if defined (SIGTSTP)
150 case SIGTSTP:
153 #endif /* SIGTSTP */
310 #if defined (SIGTSTP)
311 sigaddset (&bset, SIGTSTP);
350 #if defined (SIGTSTP)
351 rl_maybe_set_sighandler (SIGTSTP, rl_signal_handler, &old_tstp);
352 #endif /* SIGTSTP */
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Devent-top.h91 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
94 #ifdef SIGTSTP
95 #define STOP_SIGNAL SIGTSTP
H A Devent-top.c886 SIGINT, SIGFPE, SIGQUIT, SIGTSTP, SIGHUP, SIGWINCH. These
1030 #if STOP_SIGNAL == SIGTSTP
1031 signal (SIGTSTP, SIG_DFL);
1042 kill (getpid (), SIGTSTP);
1043 signal (SIGTSTP, handle_stop_sig);
1039 kill (getpid (), SIGTSTP); local
/freebsd-9.3-release/contrib/tcsh/
H A Dtc.sig.h127 sigaction(SIGTSTP, NULL, &(sv)[2]); \
135 sigaddset(&m__, SIGTSTP); \
147 sigaction(SIGTSTP, &(sv)[2], NULL); \
/freebsd-9.3-release/cddl/lib/libdtrace/
H A Dsignal.d61 inline int SIGTSTP = 18;
62 #pragma D binding "1.0" SIGTSTP
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dreadpassphrase.c103 (void)sigaction(SIGTSTP, &sa, &savetstp);
161 (void)sigaction(SIGTSTP, &savetstp, NULL);
175 case SIGTSTP:
/freebsd-9.3-release/lib/libc/gen/
H A Dreadpassphrase.c113 (void)_sigaction(SIGTSTP, &sa, &savetstp);
151 (void)_sigaction(SIGTSTP, &savetstp, NULL);
165 case SIGTSTP:
/freebsd-9.3-release/usr.bin/mail/
H A Dtty.c76 savetstp = signal(SIGTSTP, SIG_DFL);
141 (void)signal(SIGTSTP, savetstp);
210 (void)signal(SIGTSTP, ttystop);
221 (void)signal(SIGTSTP, SIG_DFL);
/freebsd-9.3-release/contrib/telnet/telnet/
H A Dsys_bsd.c119 #ifdef SIGTSTP
121 #endif /* SIGTSTP */
599 #ifdef SIGTSTP
600 (void) signal(SIGTSTP, susp);
601 #endif /* SIGTSTP */
653 #ifdef SIGTSTP
654 (void) signal(SIGTSTP, SIG_DFL);
656 (void) sigsetmask(sigblock(0) & ~(1<<(SIGTSTP-1)));
658 (void) sigrelse(SIGTSTP);
660 #endif /* SIGTSTP */
[all...]
/freebsd-9.3-release/contrib/top/
H A Dtop.c577 sighold(SIGTSTP);
579 old_sigmask = sigblock(Smask(SIGINT) | Smask(SIGQUIT) | Smask(SIGTSTP));
584 (void) signal(SIGTSTP, tstop);
591 sigrelse(SIGTSTP);
771 (void) signal(SIGTSTP, SIG_DFL);
775 sigrelse(SIGTSTP);
777 (void) sigsetmask(sigblock(0) & ~(1 << (SIGTSTP - 1)));
779 (void) kill(0, SIGTSTP);
782 (void) signal(SIGTSTP, tstop);
1205 sigret_t tstop(i) /* SIGTSTP handle
[all...]
/freebsd-9.3-release/crypto/heimdal/appl/telnet/telnet/
H A Dsys_bsd.c313 #ifdef SIGTSTP
315 #endif /* SIGTSTP */
457 #ifdef SIGTSTP
458 signal(SIGTSTP, susp);
459 #endif /* SIGTSTP */
498 #ifdef SIGTSTP
499 signal(SIGTSTP, SIG_DFL);
501 sigaddset(&sm, SIGTSTP);
503 #endif /* SIGTSTP */
689 #ifdef SIGTSTP
[all...]
/freebsd-9.3-release/sbin/reboot/
H A Dreboot.c165 (void)signal(SIGTSTP, SIG_IGN);
174 if (kill(1, SIGTSTP) == -1)
175 err(1, "SIGTSTP init");
/freebsd-9.3-release/usr.bin/talk/
H A Dinit_disp.c83 (void) sigaction(SIGTSTP, (struct sigaction *)0, &sa);
85 (void) sigaction(SIGTSTP, &sa, (struct sigaction *)0);
/freebsd-9.3-release/contrib/gdb/gdb/signals/
H A Dsignals.c73 {"SIGTSTP", "Stopped (user)"},
377 #if defined (SIGTSTP)
378 if (hostsig == SIGTSTP)
630 #if defined (SIGTSTP)
632 return SIGTSTP;
/freebsd-9.3-release/bin/sh/
H A Dtrap.c289 case SIGTSTP:
318 if (mflag && (signo == SIGTSTP ||
544 if (sig != 0 && sig != SIGSTOP && sig != SIGTSTP && sig != SIGTTIN &&
/freebsd-9.3-release/sys/sys/
H A Drctl.h114 #define RCTL_ACTION_SIGTSTP SIGTSTP
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dstrsignal.c165 #if defined (SIGTSTP)
166 ENTRY(SIGTSTP, "SIGTSTP", "Stopped (user)"),
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dstrsignal.c165 #if defined (SIGTSTP)
166 ENTRY(SIGTSTP, "SIGTSTP", "Stopped (user)"),
/freebsd-9.3-release/contrib/nvi/ex/
H A Dex_shell.c328 #ifdef SIGTSTP
329 SIGTSTP, "Suspended",
/freebsd-9.3-release/contrib/sendmail/src/
H A Dalias.c508 #ifdef SIGTSTP
510 #endif /* SIGTSTP */
570 #ifdef SIGTSTP
571 oldsigtstp = sm_signal(SIGTSTP, SIG_IGN);
572 #endif /* SIGTSTP */
612 #ifdef SIGTSTP
613 (void) sm_signal(SIGTSTP, oldsigtstp);
614 #endif /* SIGTSTP */
/freebsd-9.3-release/usr.bin/msgs/
H A Dmsgs.c494 signal(SIGTSTP, onsusp);
538 signal(SIGTSTP, SIG_DFL);
708 signal(SIGTSTP, SIG_DFL);
710 kill(0, SIGTSTP);
711 signal(SIGTSTP, onsusp);

Completed in 241 milliseconds

123