/php-src/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 7 <?php if (!defined('SIGRTMIN')) die("skip realtime signal not supported"); ?> 12 printf("got realtime signal from %s, ruid:%s\n", $siginfo['pid'] ?? '', $siginfo['uid'] ?? ''); 20 %rgot realtime signal from \d+, ruid:\d+%r
|
H A D | pcntl_signal_001.phpt | 2 pcntl_signal() signal greater than max available. 16 pcntl_signal(): Argument #1 ($signal) must be less than %d
|
H A D | 001.phpt | 43 print "\nProcess was terminated by signal : ". $signal_print; 65 print "\nProcess was stopped by signal : ". $signal_print; 83 Process was terminated by signal : SIGTERM 86 Process was stopped by signal : SIGSTOP
|
H A D | pcntl_sigwaitinfo_errors.phpt | 37 $signals = ["not a signal"]; 44 /* Unlikely valid signal */
|
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
|
H A D | pcntl_sigtimedwait_errors.phpt | 21 /* Invalid signal numbers */ 44 /* Invalid signal type */ 46 $signals = ["not a signal"];
|
H A D | pcntl_sigprocmask_errors.phpt | 45 $signals = ["not a signal"]; 52 /* Unlikely valid signal */
|
H A D | waiting_on_sigchild_pcntl_wait.phpt | 24 // Sleeping ensures we get to add the process to the list before the signal is invoked.
|
/php-src/ext/posix/tests/ |
H A D | posix_kill_error.phpt | 10 echo "\n-- Testing posix_kill() function with invalid signal --\n"; 25 -- Testing posix_kill() function with invalid signal --
|
/php-src/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 | 41 $tester->signal('USR2');
|
/php-src/ext/standard/tests/misc/ |
H A D | time_nanosleep_basic.phpt | 20 echo "Interrupted by a signal.\n";
|
/php-src/ext/pcntl/ |
H A D | pcntl.stub.php | 1020 function pcntl_signal(int $signal, $handler, bool $restart_syscalls = true): bool {} argument 1023 function pcntl_signal_get_handler(int $signal) {} argument 1084 function pcntl_rfork(int $flags, int $signal = 0): int{} argument
|
H A D | config.m4 | 65 [#include <signal.h>])
|
/php-src/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-src/Zend/ |
H A D | zend_signal.h | 109 # define zend_signal(signo, handler) signal(signo, handler)
|
/php-src/ext/standard/ |
H A D | mail.c | 545 sig_handler = (void *)signal(SIGCHLD, SIG_DFL); in php_mail() 573 signal(SIGCHLD, sig_handler); in php_mail() 589 signal(SIGCHLD, sig_handler); in php_mail() 613 signal(SIGCHLD, sig_handler); in php_mail()
|
/php-src/sapi/fuzzer/ |
H A D | fuzzer-execute-common.h | 104 signal(SIGPIPE, SIG_IGN); in fuzzer_init_php_for_execute()
|
/php-src/sapi/embed/ |
H A D | php_embed.c | 166 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so in php_embed_init()
|
/php-src/ext/posix/ |
H A D | posix.stub.php | 314 function posix_kill(int $process_id, int $signal): bool {} argument
|