/PHP-8.0/ext/pcntl/tests/ |
H A D | pcntl_signal.phpt | 9 echo "signal dispatched\n"; 15 printf("got signal from %s\n", $siginfo['pid'] ?? 'nobody'); 45 signal dispatched 46 got signal from %r\d+|nobody%r 48 pcntl_signal(): Argument #1 ($signal) must be greater than or equal to 1 49 pcntl_signal(): Argument #1 ($signal) must be greater than or equal to 1
|
H A D | pcntl_realtime_signal.phpt | 2 pcntl_signal() context of realtime signal 4 <?php if (!defined('SIGRTMIN')) die("skip realtime signal not supported"); ?> 11 printf("got realtime signal from %s, ruid:%s\n", $siginfo['pid'] ?? '', $siginfo['uid'] ?? ''); 19 %rgot realtime signal from \d+, ruid:\d+%r
|
H A D | 001.phpt | 42 print "\nProcess was terminated by signal : ". $signal_print; 64 print "\nProcess was stopped by signal : ". $signal_print; 82 Process was terminated by signal : SIGTERM 85 Process was stopped by signal : SIGSTOP
|
H A D | async_signals.phpt | 2 Asynchronous signal handling through VM interrupts
|
H A D | signal_closure_handler.phpt | 2 Closures as a signal handler
|
/PHP-8.0/ext/posix/tests/ |
H A D | posix_kill_error.phpt | 12 echo "\n-- Testing posix_kill() function with invalid signal --\n"; 27 -- Testing posix_kill() function with invalid signal --
|
/PHP-8.0/ext/pcntl/ |
H A D | pcntl.stub.php | 20 function pcntl_signal(int $signal, $handler, bool $restart_syscalls = true): bool {} argument 23 function pcntl_signal_get_handler(int $signal) {} argument
|
H A D | config.m4 | 14 #include <signal.h>
|
H A D | pcntl_arginfo.h | 21 ZEND_ARG_TYPE_INFO(0, signal, IS_LONG, 0) 27 ZEND_ARG_TYPE_INFO(0, signal, IS_LONG, 0)
|
/PHP-8.0/sapi/fpm/tests/ |
H A D | bug77023-pm-dynamic-blocking-sigquit.phpt | 47 $tester->expectLogWarning('child \\d+ exited on signal 9 \\(SIGKILL\\) after \\d+.\\d+ seconds from… 49 $tester->expectLogWarning('child \\d+ exited on signal 9 \\(SIGKILL\\) after \\d+.\\d+ seconds from…
|
H A D | bug76601-reload-child-signals.phpt | 39 …BUG: pid 21315, fpm_pctl_kill_all(), line 161: [pool unconfined] sending signal 9 SIGKILL to child… 40 …, fpm_children_bury(), line 259: [pool unconfined] child 21337 exited on signal 9 (SIGKILL) after …
|
H A D | bug68442-signal-reload.phpt | 29 $tester->signal('USR2');
|
H A D | bug77934-reload-process-control.phpt | 30 $tester->signal('USR2');
|
H A D | reload-uses-sigkill-as-last-measure.phpt | 39 $tester->signal('USR2');
|
H A D | tester.inc | 886 * Reload FPM by sending USR2 signal and optionally change config before that. 901 return $this->signal('USR2'); 905 * Reload FPM logs by sending USR1 signal. 912 return $this->signal('USR1'); 916 * Send signal to the supplied PID or the server PID. 918 * @param string $signal 923 public function signal($signal, int $pid = null) 928 $cmd = "kill -$signal $pid"; 929 $this->trace('Sending signal using command', $cmd, true); 931 return exec("kill -$signal $pid"); [all …]
|
/PHP-8.0/sapi/fuzzer/ |
H A D | fuzzer-execute.c | 80 signal(SIGPIPE, SIG_IGN); in LLVMFuzzerInitialize()
|
/PHP-8.0/ext/standard/tests/misc/ |
H A D | time_nanosleep_basic.phpt | 20 echo "Interrupted by a signal.\n";
|
/PHP-8.0/ext/standard/tests/general_functions/ |
H A D | proc_open02.phpt | 18 usleep(20000); // let the OS run the sleep process before sending the signal
|
/PHP-8.0/Zend/ |
H A D | zend_signal.h | 107 # define zend_signal(signo, handler) signal(signo, handler)
|
H A D | Zend.m4 | 249 [whether to enable zend signal handling])], 257 AC_DEFINE(ZEND_SIGNALS, 1, [Use zend signal handling]) 261 AC_MSG_CHECKING(whether to enable zend signal handling)
|
/PHP-8.0/ext/posix/ |
H A D | posix.stub.php | 5 function posix_kill(int $process_id, int $signal): bool {} argument
|
/PHP-8.0/ext/standard/ |
H A D | mail.c | 527 sig_handler = (void *)signal(SIGCHLD, SIG_DFL); in php_mail() 555 signal(SIGCHLD, sig_handler); in php_mail() 571 signal(SIGCHLD, sig_handler); in php_mail() 595 signal(SIGCHLD, sig_handler); in php_mail()
|
H A D | exec.c | 127 sig_handler = signal (SIGCHLD, SIG_DFL); in php_exec() 192 signal(SIGCHLD, sig_handler); in php_exec()
|
/PHP-8.0/sapi/embed/ |
H A D | php_embed.c | 156 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so in php_embed_init()
|
/PHP-8.0/.github/actions/apt-x64/ |
H A D | action.yml | 71 # fix debug build warning: zend_signal: handler was replaced for signal (2) after startup
|