Home
last modified time | relevance | path

Searched refs:pid (Results 76 – 100 of 125) sorted by relevance

12345

/PHP-7.4/ext/pcntl/tests/
H A Dpcntl_realtime_signal.phpt11 printf("got realtime signal from %s, ruid:%s\n", $siginfo['pid'] ?? '', $siginfo['uid'] ?? '');
H A Dpcntl_signal.phpt15 printf("got signal from %s\n", $siginfo['pid'] ?? 'nobody');
/PHP-7.4/ext/pcntl/
H A Dpcntl.c66 ZEND_ARG_INFO(0, pid)
152 ZEND_ARG_INFO(0, pid)
160 ZEND_ARG_INFO(0, pid)
705 zend_long pid, options = 0; in PHP_FUNCTION() local
727 child_id = wait4((pid_t) pid, &status, options, &rusage); in PHP_FUNCTION()
729 child_id = waitpid((pid_t) pid, &status, options); in PHP_FUNCTION()
732 child_id = waitpid((pid_t) pid, &status, options); in PHP_FUNCTION()
1355 zend_long pid = getpid(); in PHP_FUNCTION() local
1365 pri = getpriority(who, pid); in PHP_FUNCTION()
1394 zend_long pid = getpid(); in PHP_FUNCTION() local
[all …]
/PHP-7.4/sapi/fpm/
H A Dinit.d.php-fpm.in18 php_fpm_PID=@localstatedir@/run/php-fpm.pid
/PHP-7.4/ext/sysvsem/tests/
H A Dnowait.phpt51 $pid = pcntl_fork();
53 if ($pid) {
81 pcntl_waitpid($pid, $status);
/PHP-7.4/ext/posix/
H A Dposix.c57 ZEND_ARG_INFO(0, pid)
118 ZEND_ARG_INFO(0, pid)
124 ZEND_ARG_INFO(0, pid)
130 ZEND_ARG_INFO(0, pid)
461 zend_long pid, sig; local
464 Z_PARAM_LONG(pid)
468 if (kill(pid, sig) < 0) {
637 zend_long pid, pgid; in PHP_FUNCTION() local
640 Z_PARAM_LONG(pid) in PHP_FUNCTION()
644 if (setpgid(pid, pgid) < 0) { in PHP_FUNCTION()
/PHP-7.4/ext/standard/tests/http/
H A Dbug61548.phpt26 $pid = http_server('tcp://127.0.0.1:12342', $responses, $output);
32 http_server_kill($pid);
H A Dignore_errors.phpt20 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
39 http_server_kill($pid);
H A Dbug38802.phpt22 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
37 http_server_kill($pid);
/PHP-7.4/ext/standard/tests/general_functions/
H A Dbug39322.phpt30 ["pid"]=>
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_scoreboard.c266 void fpm_scoreboard_child_use(struct fpm_child_s *child, pid_t pid) /* {{{ */ in fpm_scoreboard_child_use() argument
275 proc->pid = pid; in fpm_scoreboard_child_use()
H A Dfpm_status.c116 add_assoc_long(&fpm_proc_stat, "pid", procs[i].pid); in fpm_status_export_to_zval()
541 (int) proc.pid, in fpm_status_handle_request()
/PHP-7.4/sapi/fpm/tests/
H A Dbug68442-signal-reload.phpt13 pid = {{FILE:PID}}
H A Dbug77934-reload-process-control.phpt13 pid = {{FILE:PID}}
H A Dbug80024-socket-reduced-inherit.phpt13 pid = {{FILE:PID}}
H A Dmain-global-prefix.phpt13 pid = {{RFILE:PID}}
H A Dpool-prefix.phpt17 pid = {{FILE:PID}}
H A Dreload-uses-sigkill-as-last-measure.phpt17 pid = {{FILE:PID}}
H A Dfpm_get_status_basic.phpt75 ["pid"]=>
/PHP-7.4/ext/oci8/tests/
H A Dlob_null.phpt22 'create or replace procedure lob_null_proc_in (pid in number, pdata in CLOB)
24 insert into lob_null_tab (id, data) values (pid, pdata);
29 'create or replace procedure lob_null_proc_out (pid in number, pdata out clob)
31 select data into pdata from lob_null_tab where id = pid;
/PHP-7.4/ext/soap/tests/
H A Dbug47021.phpt52 $pid = http_server('tcp://127.0.0.1:12342', $responses);
75 http_server_kill($pid);
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg.init.d9 PIDFILE=/var/run/phpdbg.pid
/PHP-7.4/sapi/litespeed/
H A Dlsapilib.c2846 if (pid == 0) in find_child_status()
2884 int status, pid; in lsapi_sigchild() local
2891 if ( pid <= 0 ) in lsapi_sigchild()
2909 pid = 0; in lsapi_sigchild()
2912 if ( pid == s_ignore_pid ) in lsapi_sigchild()
2914 pid = 0; in lsapi_sigchild()
3132 int pid; in lsapi_prefork_server_accept() local
3255 pid = fork(); in lsapi_prefork_server_accept()
3257 if ( !pid ) in lsapi_prefork_server_accept()
3300 else if ( pid == -1 ) in lsapi_prefork_server_accept()
[all …]
/PHP-7.4/sapi/cli/tests/
H A Dsapi_windows_set_ctrl_handler.phpt36 $child_pid = proc_get_status($proc)["pid"];
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_control_string.phpt77 if (false === ($pid = getmypid()))
78 $pid = "[\d]+";
81 if (!preg_match("@^" . $pid . "*@ismU", $trace))

Completed in 68 milliseconds

12345