/PHP-5.3/ext/pcntl/ |
H A D | test-pcntl.php | 6 function alarm_handle($signal){ argument 7 if ($signal==SIGALRM) print "Child: Caught SIGALRM!!!\n"; 10 function usr1_handle($signal){ argument 11 if ($signal==SIGUSR1) print "Child: Caught SIGUSR1!!!\n";
|
H A D | README | 4 control (fork(), waitpid(), signal(), WIF's, etc). This is extremly experimental,
|
/PHP-5.3/ext/pcntl/tests/ |
H A D | pcntl_signal.phpt | 9 echo "signal dispatched\n"; 26 signal dispatched 34 Warning: pcntl_signal(): Error assigning signal %s 37 Warning: pcntl_signal(): Error assigning signal %s
|
H A D | 001.phpt | 39 print "\nProcess was terminated by signal : ". $signal_print; 61 print "\nProcess was stoped by signal : ". $signal_print; 79 Process was terminated by signal : SIGTERM 82 Process was stoped by signal : SIGSTOP
|
H A D | signal_closure_handler.phpt | 2 Closures as a signal handler
|
/PHP-5.3/win32/ |
H A D | time.c | 130 int signal; 140 raise((int) msg->signal); 142 WM_NOTIFY, msg->signal, 0); 163 msg->signal = SIGALRM; 167 msg->signal = SIGVTALRM; 171 msg->signal = SIGPROF;
|
/PHP-5.3/ext/posix/tests/ |
H A D | posix_kill_error.phpt | 10 * Description: Send a signal to a process (POSIX.1, 3.3.2) 29 echo "\n-- Testing posix_kill() function with invalid signal --\n"; 54 -- Testing posix_kill() function with invalid signal --
|
H A D | posix_kill_variation1.phpt | 10 * Description: Send a signal to a process (POSIX.1, 3.3.2)
|
H A D | posix_kill_variation2.phpt | 10 * Description: Send a signal to a process (POSIX.1, 3.3.2)
|
/PHP-5.3/ext/standard/ |
H A D | mail.c | 284 sig_handler = (void *)signal(SIGCHLD, SIG_DFL); in php_mail() 312 signal(SIGCHLD, sig_handler); in php_mail() 328 signal(SIGCHLD, sig_handler); in php_mail() 352 signal(SIGCHLD, sig_handler); in php_mail()
|
H A D | exec.c | 104 sig_handler = signal (SIGCHLD, SIG_DFL); in php_exec() 196 signal(SIGCHLD, sig_handler); in php_exec()
|
/PHP-5.3/ext/standard/tests/misc/ |
H A D | time_nanosleep_basic.phpt | 20 echo "Interrupted by a signal.\n";
|
/PHP-5.3/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-5.3/sapi/apache_hooks/ |
H A D | sapi_apache.c | 70 signal(SIGCHLD, sigchld_handler); in apache_php_module_hook()
|
H A D | mod_php5.c | 286 handler = signal(SIGPIPE, SIG_IGN); in sapi_apache_read_post() 296 signal(SIGPIPE, handler); in sapi_apache_read_post()
|
/PHP-5.3/sapi/embed/ |
H A D | php_embed.c | 164 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so in php_embed_init()
|
/PHP-5.3/ext/pdo_mysql/ |
H A D | mysql_driver.c | 524 handler = signal(SIGPIPE, SIG_IGN); 529 signal(SIGPIPE, handler); 534 signal(SIGPIPE, handler);
|
/PHP-5.3/sapi/litespeed/ |
H A D | lsapi_main.c | 803 void litespeed_cleanup(int signal) in litespeed_cleanup() argument 805 s_stop = signal; in litespeed_cleanup() 881 signal(SIGPIPE, SIG_IGN); in main()
|
H A D | lsapilib.c | 588 signal(SIGXFSZ, SIG_IGN); in LSAPI_Init() 1660 static void lsapi_cleanup(int signal) in lsapi_cleanup() argument 1662 s_stop = signal; in lsapi_cleanup() 1680 static void lsapi_sigchild( int signal ) in lsapi_sigchild() argument
|
/PHP-5.3/Zend/ |
H A D | zend_execute_API.c | 64 signal(SIGSEGV, original_sigsegv_handler); 66 signal(SIGSEGV, SIG_DFL); 142 original_sigsegv_handler = signal(SIGSEGV, zend_handle_sigsegv); in init_executor() 326 signal(SIGSEGV, original_sigsegv_handler); in shutdown_executor() 1483 signal(SIGALRM, zend_timeout); in zend_set_timeout() 1491 signal(SIGPROF, zend_timeout); in zend_set_timeout()
|
H A D | Zend.m4 | 60 signal.h \
|
/PHP-5.3/ext/mysql/ |
H A D | php_mysql.c | 50 # define signal(a, b) NULL macro 53 # define signal(a, b) NULL macro 455 handler = signal(SIGPIPE, SIG_IGN); in _close_mysql_link() 457 signal(SIGPIPE, handler); in _close_mysql_link() 470 handler = signal(SIGPIPE, SIG_IGN); in _close_mysql_plink() 472 signal(SIGPIPE, handler); in _close_mysql_plink()
|
/PHP-5.3/sapi/apache/ |
H A D | mod_php5.c | 141 handler = signal(SIGPIPE, SIG_IGN); in sapi_apache_read_post() 151 signal(SIGPIPE, handler); in sapi_apache_read_post()
|
/PHP-5.3/main/ |
H A D | main.c | 1381 signal(SIGCHLD, sigchld_handler); in sigchld_handler() 1428 signal(SIGCHLD, sigchld_handler); in php_request_startup() 1493 signal(SIGCHLD, sigchld_handler); in php_request_startup() 1526 signal(SIGCHLD, sigchld_handler); in php_request_startup_for_hook()
|
/PHP-5.3/sapi/cgi/ |
H A D | cgi_main.c | 1375 void fastcgi_cleanup(int signal) argument 1528 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so
|