Searched refs:SIGCHLD (Results 1 – 15 of 15) sorted by relevance
/PHP-8.2/ext/pcntl/tests/ |
H A D | waiting_on_sigchild_pcntl_wait.phpt | 2 Waiting on SIGCHLD with a pcntl_wait() loop 16 pcntl_signal(SIGCHLD, function($sig, $info) use (&$processes) { 18 echo "SIGCHLD\n"; 39 SIGCHLD 40 SIGCHLD 41 SIGCHLD 42 SIGCHLD 43 SIGCHLD 44 SIGCHLD
|
H A D | 002.phpt | 21 pcntl_sigprocmask(SIG_BLOCK, array(SIGCHLD,(string)SIGTERM)); 24 var_dump(in_array(SIGCHLD, $oldset)); 38 pcntl_signal(SIGCHLD, function($signo){}); 40 $signo = pcntl_sigwaitinfo(array((string)SIGCHLD), $siginfo); 41 echo "signo == SIGCHLD\n"; 42 var_dump($signo === SIGCHLD && $signo === $siginfo['signo']); 45 echo "signo === SIGCHLD\n"; 46 var_dump($siginfo['signo'] === SIGCHLD); 87 signo == SIGCHLD 91 signo === SIGCHLD
|
H A D | bug73783.phpt | 8 pcntl_signal(SIGCHLD, SIG_IGN);
|
H A D | 003.phpt | 16 pcntl_sigprocmask(SIG_BLOCK, array(SIGCHLD,SIGTERM), $old);
|
/PHP-8.2/sapi/fpm/fpm/ |
H A D | fpm_signals.c | 74 #ifdef SIGCHLD 75 [SIGCHLD] = "SIGCHLD", 164 [SIGCHLD] = 'C' in sig_handler() 212 0 > sigaction(SIGCHLD, &act, 0) || in fpm_signals_init_main() 245 0 > sigaction(SIGCHLD, &act_dfl, 0) || in fpm_signals_init_child() 270 int init_signal_array[] = { SIGUSR1, SIGUSR2, SIGCHLD }; in fpm_signals_init_mask()
|
/PHP-8.2/ext/standard/ |
H A D | mail.c | 520 sig_handler = (void *)signal(SIGCHLD, SIG_DFL); in php_mail() 548 signal(SIGCHLD, sig_handler); in php_mail() 564 signal(SIGCHLD, sig_handler); in php_mail() 588 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.2/ext/sysvsem/tests/ |
H A D | nowait.phpt | 13 pcntl_signal(SIGCHLD, SIG_IGN);
|
/PHP-8.2/ext/pcntl/ |
H A D | pcntl.stub.php | 148 const SIGCHLD = UNKNOWN; define
|
H A D | pcntl_arginfo.h | 269 #if defined(SIGCHLD) in register_pcntl_symbols() 270 REGISTER_LONG_CONSTANT("SIGCHLD", LONG_CONST(SIGCHLD), CONST_PERSISTENT); in register_pcntl_symbols()
|
H A D | pcntl.c | 861 #ifdef SIGCHLD in pcntl_siginfo_to_zval() 862 case SIGCHLD: in pcntl_siginfo_to_zval()
|
/PHP-8.2/sapi/litespeed/ |
H A D | lsapilib.c | 3169 if( sigaction( SIGCHLD, &act, &old_child ) ) in lsapi_prefork_server_accept() 3271 sigaddset( &mask, SIGCHLD ); in lsapi_prefork_server_accept() 3311 sigaction( SIGCHLD, &old_child, 0 ); in lsapi_prefork_server_accept() 3440 if (sigaction(SIGCHLD, &act, &old_child)) in LSAPI_Accept_Before_Fork() 3556 sigaction(SIGCHLD, &old_child, 0); in LSAPI_Accept_Before_Fork()
|
/PHP-8.2/main/ |
H A D | main.c | 1742 signal(SIGCHLD, sigchld_handler); in sigchld_handler() 1768 signal(SIGCHLD, sigchld_handler); in php_request_startup()
|
/PHP-8.2/ |
H A D | configure.ac | 970 [whether to enable PHP's own SIGCHLD handler], 972 [Enable PHP's own SIGCHLD handler])],
|
H A D | NEWS | 1360 . Revert behaviour of receiving SIGCHLD signals back to the behaviour 1434 . Fixed bug GH-11498 (SIGCHLD is not always returned from proc_open).
|
Completed in 42 milliseconds