Searched refs:SIG_IGN (Results 1 – 20 of 20) sorted by relevance
/PHP-8.2/ext/pcntl/tests/ |
H A D | bug73783.phpt | 2 Bug #73783: (SIG_IGN needs to be set to prevent syscals from returning early) 8 pcntl_signal(SIGCHLD, SIG_IGN);
|
H A D | pcntl_signal_002.phpt | 2 pcntl_signal() - If handler is an int value different than SIG_DFL or SIG_IGN 16 pcntl_signal(): Argument #2 ($handler) must be either SIG_DFL or SIG_IGN when an integer value is g…
|
H A D | pcntl_signal_get_handler.phpt | 17 pcntl_signal(SIGUSR1, SIG_IGN);
|
H A D | pcntl_signal.phpt | 20 var_dump(pcntl_signal(SIGALRM, SIG_IGN));
|
/PHP-8.2/sapi/embed/ |
H A D | php_embed.c | 165 #if defined(SIGPIPE) && defined(SIG_IGN) in php_embed_init() 166 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so in php_embed_init()
|
/PHP-8.2/Zend/ |
H A D | zend_signal.c | 213 } else if (p_sig.handler != SIG_IGN) { in zend_signal_handler() 249 if (SIGG(handlers)[signo-1].handler == (void *) SIG_IGN) { in zend_sigaction() 250 sa.sa_sigaction = (void *) SIG_IGN; in zend_sigaction() 350 sa.sa_sigaction != (void *) SIG_IGN) { in zend_signal_deactivate()
|
/PHP-8.2/ext/opcache/tests/ |
H A D | file_cache_error.phpt | 32 pcntl_signal(SIGXFSZ, SIG_IGN);
|
/PHP-8.2/sapi/fuzzer/ |
H A D | fuzzer-execute-common.h | 104 signal(SIGPIPE, SIG_IGN); in fuzzer_init_php_for_execute()
|
/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 | 35 const SIG_IGN = UNKNOWN; define
|
H A D | pcntl_arginfo.h | 242 REGISTER_LONG_CONSTANT("SIG_IGN", LONG_CONST(SIG_IGN), CONST_PERSISTENT); in register_pcntl_symbols()
|
H A D | pcntl.c | 644 if (Z_LVAL_P(handle) != (zend_long) SIG_DFL && Z_LVAL_P(handle) != (zend_long) SIG_IGN) { in PHP_FUNCTION()
|
/PHP-8.2/ext/fileinfo/libmagic/ |
H A D | compress.c | 284 new_act.sa_handler = SIG_IGN; in file_zmagic() 344 if (sa_saved && sig_act.sa_handler != SIG_IGN) in file_zmagic()
|
/PHP-8.2/sapi/cli/ |
H A D | php_cli.c | 1217 #if defined(SIGPIPE) && defined(SIG_IGN) in WinMain() 1218 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so in WinMain()
|
H A D | php_cli_server.c | 2876 signal(SIGPIPE, SIG_IGN); in do_cli_server()
|
/PHP-8.2/sapi/litespeed/ |
H A D | lsapi_main.c | 1463 #if defined(SIGPIPE) && defined(SIG_IGN) in main() 1464 signal(SIGPIPE, SIG_IGN); in main()
|
H A D | lsapilib.c | 1443 #if defined(SIGXFSZ) && defined(SIG_IGN) in LSAPI_Init() 1444 signal(SIGXFSZ, SIG_IGN); in LSAPI_Init()
|
/PHP-8.2/sapi/fpm/fpm/ |
H A D | fpm_main.c | 1577 #if defined(SIGPIPE) && defined(SIG_IGN) in main() 1578 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so in main()
|
/PHP-8.2/sapi/cgi/ |
H A D | cgi_main.c | 1751 #if defined(SIGPIPE) && defined(SIG_IGN) 1752 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so
|
/PHP-8.2/ext/fileinfo/ |
H A D | libmagic.patch | 1403 if (sa_saved && sig_act.sa_handler != SIG_IGN)
|
Completed in 103 milliseconds