Home
last modified time | relevance | path

Searched refs:SIGTSTP (Results 1 – 25 of 145) sorted by relevance

123456

/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
D28-14.c63 if (signal(SIGTSTP, handler_1) == SIG_ERR) { in main()
83 ret = sigaction(SIGTSTP, &sa, &save); in main()
91 ret = raise(SIGTSTP); in main()
104 ret = sigaction(SIGTSTP, &save, 0); in main()
112 ret = raise(SIGTSTP); in main()
D3-14.c40 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
46 if (sigaction(SIGTSTP, 0, &oact) == -1) { in main()
52 if (raise(SIGTSTP) == -1) { in main()
D22-14.c54 raise(SIGTSTP); in handler()
71 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
77 if (raise(SIGTSTP) == -1) { in main()
D25-14.c53 raise(SIGTSTP); in handler()
70 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
76 if (raise(SIGTSTP) == -1) { in main()
D8-15.c32 raise(SIGTSTP); in SIGTTIN_handler()
46 sigaddset(&act.sa_mask, SIGTSTP); in main()
56 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
D19-14.c50 if (info->si_signo != SIGTSTP) { in handler()
85 ret = sigaction(SIGTSTP, &sa, 0); in main()
98 ret = raise(SIGTSTP); in main()
D1-14.c40 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
46 if (raise(SIGTSTP) == -1) { in main()
D6-14.c38 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
44 if (raise(SIGTSTP) == -1) { in main()
D18-14.c67 ret = sigaction(SIGTSTP, &sa, 0); in main()
80 ret = raise(SIGTSTP); in main()
D2-14.c40 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
48 if (sigaction(SIGTSTP, &act, &oact) == -1) { in main()
D4-14.c54 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
60 if (raise(SIGTSTP) == -1) { in main()
D13-14.c51 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
63 if (raise(SIGTSTP) == -1) { in main()
D12-40.c50 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
62 if (raise(SIGTSTP) == -1) { in main()
D4-40.c53 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
59 if (raise(SIGTSTP) == -1) { in main()
D8-14.c47 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
62 if (raise(SIGTSTP) == -1) { in main()
D12-14.c52 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
72 if (raise(SIGTSTP) == -1) { in main()
D17-14.c48 sigaction(SIGTSTP, &act, 0); in main()
82 kill(pid, SIGTSTP); in main()
D4-92.c33 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
D4-66.c33 if (sigaction(SIGTSTP, &act, 0) == -1) { in main()
/third_party/alsa-utils/axfer/
Dsubcmd-transfer.c53 if (sigaction(SIGTSTP, NULL, &sa) < 0) { in handle_unix_signal_for_suspend()
61 if (sigaction(SIGTSTP, &sa, NULL) < 0) { in handle_unix_signal_for_suspend()
67 raise(SIGTSTP); in handle_unix_signal_for_suspend()
72 sigaddset(&curr, SIGTSTP); in handle_unix_signal_for_suspend()
89 if (sigaction(SIGTSTP, &sa, NULL) < 0) { in handle_unix_signal_for_suspend()
114 if (sigaction(SIGTSTP, &sa, NULL) < 0) in prepare_signal_handler()
/third_party/musl/src/string/
Dstrsignal.c9 && (SIGCHLD == 17) && (SIGCONT == 18) && (SIGSTOP == 19) && (SIGTSTP == 20) \
42 [SIGTSTP] = 20,
/third_party/node/src/api/
Dutils.cc92 #ifdef SIGTSTP in signo_string()
93 SIGNO_CASE(SIGTSTP); in signo_string()
/third_party/rust/crates/nix/src/sys/
Dsignal.rs74 SIGTSTP,
155 "SIGTSTP" => Signal::SIGTSTP, in from_str()
238 Signal::SIGTSTP => "SIGTSTP", in as_str()
301 SIGSTOP, SIGTSTP, SIGTTIN, SIGTTOU, SIGURG, SIGXCPU, SIGXFSZ, SIGVTALRM,
309 SIGSTOP, SIGTSTP, SIGTTIN, SIGTTOU, SIGURG, SIGXCPU, SIGXFSZ, SIGVTALRM,
329 SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN, SIGTTOU, SIGURG, SIGXCPU, SIGXFSZ,
345 SIGSTOP, SIGTSTP, SIGTTIN, SIGTTOU, SIGURG, SIGXCPU, SIGXFSZ, SIGVTALRM,
360 SIGSTOP, SIGTSTP, SIGTTIN, SIGTTOU, SIGURG, SIGXCPU, SIGXFSZ, SIGVTALRM,
/third_party/node/doc/api/
Dreadline.md122 events [`'SIGTSTP'`][] and [`'SIGCONT'`][].)
153 the background using <kbd>Ctrl</kbd>+<kbd>Z</kbd> (i.e. `SIGTSTP`) is then
156 If the `input` stream was paused *before* the `SIGTSTP` request, this event will
190 ### Event: `'SIGTSTP'`
195 The `'SIGTSTP'` event is emitted when the `input` stream receives a
196 <kbd>Ctrl</kbd>+<kbd>Z</kbd> input, typically known as `SIGTSTP`. If there are
197 no `'SIGTSTP'` event listeners registered when the `input` stream receives a
198 `SIGTSTP`, the Node.js process will be sent to the background.
209 rl.on('SIGTSTP', () => {
210 // This will override SIGTSTP and prevent the program from going to the
[all …]
/third_party/node/deps/uvwasi/src/
Duv_mapping.c160 #ifdef SIGTSTP in uvwasi__translate_to_uv_signal()
161 case UVWASI_SIGTSTP: return SIGTSTP; in uvwasi__translate_to_uv_signal()

123456