Searched refs:posix_getpid (Results 1 – 19 of 19) sorted by relevance
/PHP-7.3/ext/posix/tests/ |
H A D | posix_getpid_error.phpt | 2 Test posix_getpid() function : error conditions 9 /* Prototype : proto int posix_getpid(void) 15 echo "*** Testing posix_getpid() : error conditions ***\n"; 18 echo "\n-- Testing posix_getpid() function with one argument --\n"; 20 var_dump( posix_getpid($extra_arg) ); 25 *** Testing posix_getpid() : error conditions *** 27 -- Testing posix_getpid() function with one argument -- 29 Warning: posix_getpid() expects exactly 0 parameters, 1 given in %s on line %d
|
H A D | posix_getpid_basic.phpt | 2 Test posix_getpid() function : basic functionality 11 $pid = posix_getpid();
|
H A D | posix_kill_error.phpt | 20 $pid = posix_getpid(); 26 $pid = posix_getpid(); 30 $pid = posix_getpid();
|
H A D | posix_getpgid_basic.phpt | 11 $pid = posix_getpid();
|
H A D | posix_getsid_basic.phpt | 11 $pid = posix_getpid();
|
H A D | posix_getsid.phpt | 17 $pid = posix_getpid();
|
/PHP-7.3/ext/pcntl/tests/ |
H A D | async_signals.phpt | 8 elseif (!function_exists("posix_getpid")) print "skip posix_getpid() not available"; 17 posix_kill(posix_getpid(), SIGTERM);
|
H A D | signal_closure_handler.phpt | 8 elseif (!function_exists("posix_getpid")) print "skip posix_getpid() not available"; 17 posix_kill(posix_getpid(), SIGTERM);
|
H A D | pcntl_signal_dispatch.phpt | 9 elseif (!function_exists("posix_getpid")) print "skip posix_getpid() not available"; 17 posix_kill(posix_getpid(), SIGTERM);
|
H A D | pcntl_signal.phpt | 11 posix_kill(posix_getpid(), SIGTERM); 17 posix_kill(posix_getpid(), SIGUSR1); 28 posix_kill(posix_getpid(), SIGTERM);
|
H A D | pcntl_signal_get_handler.phpt | 20 posix_kill(posix_getpid(), SIGUSR1);
|
H A D | pcntl_realtime_signal.phpt | 13 posix_kill(posix_getpid(), SIGRTMIN);
|
H A D | pcntl_wait_rusage1.phpt | 36 posix_kill(posix_getpid(), SIGSTOP);
|
H A D | pcntl_waitpid_rusage1.phpt | 36 posix_kill(posix_getpid(), SIGSTOP);
|
H A D | pcntl_wait.phpt | 33 posix_kill(posix_getpid(), SIGSTOP);
|
H A D | 002.phpt | 23 posix_kill(posix_getpid(), SIGTERM);
|
/PHP-7.3/ext/posix/ |
H A D | php_posix.h | 41 PHP_FUNCTION(posix_getpid);
|
H A D | posix.c | 233 PHP_FE(posix_getpid, arginfo_posix_getpid) 478 PHP_FUNCTION(posix_getpid) in PHP_FUNCTION() argument
|
/PHP-7.3/ext/mysqli/tests/ |
H A D | mysqli_fork.phpt | 12 if (!function_exists('posix_getpid')) 91 …ql = sprintf("INSERT INTO messages(pid, sender, msg) VALUES (%d, 'child', '%%s')", posix_getpid()); 139 … = sprintf("INSERT INTO messages (pid, sender, msg) VALUES (%d, 'parent', '%%s')", posix_getpid());
|
Completed in 27 milliseconds