Searched refs:SIG_IGN (Results 1 – 20 of 20) sorted by relevance
/php-src/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-src/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-src/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-src/ext/opcache/tests/ |
H A D | file_cache_error.phpt | 32 pcntl_signal(SIGXFSZ, SIG_IGN);
|
/php-src/sapi/fuzzer/ |
H A D | fuzzer-execute-common.h | 104 signal(SIGPIPE, SIG_IGN); in fuzzer_init_php_for_execute()
|
/php-src/ext/sysvsem/tests/ |
H A D | nowait.phpt | 13 pcntl_signal(SIGCHLD, SIG_IGN);
|
/php-src/ext/pcntl/ |
H A D | pcntl.stub.php | 113 const SIG_IGN = UNKNOWN; define
|
H A D | pcntl_arginfo.h | 342 REGISTER_LONG_CONSTANT("SIG_IGN", LONG_CONST(SIG_IGN), CONST_PERSISTENT); in register_pcntl_symbols()
|
H A D | pcntl.c | 780 if (Z_LVAL_P(handle) != (zend_long) SIG_DFL && Z_LVAL_P(handle) != (zend_long) SIG_IGN) { in PHP_FUNCTION()
|
/php-src/sapi/cli/ |
H A D | php_cli.c | 1196 #if defined(SIGPIPE) && defined(SIG_IGN) in WinMain() 1197 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so in WinMain()
|
H A D | php_cli_server.c | 2895 signal(SIGPIPE, SIG_IGN); in do_cli_server()
|
/php-src/ext/fileinfo/libmagic/ |
H A D | compress.c | 308 new_act.sa_handler = SIG_IGN; in file_zmagic() 372 if (sa_saved && sig_act.sa_handler != SIG_IGN) in file_zmagic()
|
/php-src/sapi/litespeed/ |
H A D | lsapi_main.c | 1459 #if defined(SIGPIPE) && defined(SIG_IGN) in main() 1460 signal(SIGPIPE, SIG_IGN); in main()
|
H A D | lsapilib.c | 1444 #if defined(SIGXFSZ) && defined(SIG_IGN) in LSAPI_Init() 1445 signal(SIGXFSZ, SIG_IGN); in LSAPI_Init()
|
/php-src/sapi/fpm/fpm/ |
H A D | fpm_main.c | 1571 #if defined(SIGPIPE) && defined(SIG_IGN) in main() 1572 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so in main()
|
/php-src/sapi/cgi/ |
H A D | cgi_main.c | 1754 #if defined(SIGPIPE) && defined(SIG_IGN) 1755 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so
|
/php-src/ext/fileinfo/ |
H A D | libmagic.patch | 1286 if (sa_saved && sig_act.sa_handler != SIG_IGN)
|
Completed in 85 milliseconds