/PHP-8.0/sapi/fpm/fpm/ |
H A D | fpm_trace_ptrace.c | 27 int fpm_trace_signal(pid_t pid) /* {{{ */ in fpm_trace_signal() argument 29 if (0 > ptrace(PTRACE_ATTACH, pid, 0, 0)) { in fpm_trace_signal() 30 zlog(ZLOG_SYSERROR, "failed to ptrace(ATTACH) child %d", pid); in fpm_trace_signal() 37 int fpm_trace_ready(pid_t pid) /* {{{ */ in fpm_trace_ready() argument 39 traced_pid = pid; in fpm_trace_ready() 44 int fpm_trace_close(pid_t pid) /* {{{ */ in fpm_trace_close() argument 46 if (0 > ptrace(PTRACE_DETACH, pid, (void *) 1, 0)) { in fpm_trace_close() 47 zlog(ZLOG_SYSERROR, "failed to ptrace(DETACH) child %d", pid); in fpm_trace_close()
|
H A D | fpm_trace_pread.c | 20 int fpm_trace_signal(pid_t pid) /* {{{ */ in fpm_trace_signal() argument 22 if (0 > fpm_pctl_kill(pid, FPM_PCTL_STOP)) { in fpm_trace_signal() 23 zlog(ZLOG_SYSERROR, "failed to send SIGSTOP to %d", pid); in fpm_trace_signal() 30 int fpm_trace_ready(pid_t pid) /* {{{ */ in fpm_trace_ready() argument 34 sprintf(buf, "/proc/%d/" PROC_MEM_FILE, (int) pid); in fpm_trace_ready() 44 int fpm_trace_close(pid_t pid) /* {{{ */ in fpm_trace_close() argument
|
H A D | fpm_trace_mach.c | 44 int fpm_trace_signal(pid_t pid) /* {{{ */ in fpm_trace_signal() argument 46 if (0 > fpm_pctl_kill(pid, FPM_PCTL_STOP)) { in fpm_trace_signal() 47 zlog(ZLOG_SYSERROR, "failed to send SIGSTOP to %d", pid); in fpm_trace_signal() 54 int fpm_trace_ready(pid_t pid) /* {{{ */ in fpm_trace_ready() argument 58 kr = task_for_pid(mach_task_self(), pid, &target); in fpm_trace_ready() 72 int fpm_trace_close(pid_t pid) /* {{{ */ in fpm_trace_close() argument
|
H A D | fpm_trace.h | 8 int fpm_trace_signal(pid_t pid); 9 int fpm_trace_ready(pid_t pid); 10 int fpm_trace_close(pid_t pid);
|
H A D | fpm_children.c | 123 static struct fpm_child_s *fpm_child_find(pid_t pid) /* {{{ */ in fpm_child_find() argument 131 if (child->pid == pid) { in fpm_child_find() 182 pid_t pid; in fpm_children_bury() local 185 while ( (pid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) { in fpm_children_bury() 190 child = fpm_child_find(pid); in fpm_children_bury() 233 zlog(ZLOG_NOTICE, "child %d stopped for tracing", (int) pid); in fpm_children_bury() 368 pid_t pid; in fpm_children_make() local 410 pid = fork(); in fpm_children_make() 412 switch (pid) { in fpm_children_make() 431 child->pid = pid; in fpm_children_make() [all …]
|
H A D | fpm_php_trace.c | 40 pid_t pid = child->pid; in fpm_php_trace_dump() local 52 fprintf(slowlog, "\n%s [pool %s] pid %d\n", buf, child->wp->config->name, (int) pid); in fpm_php_trace_dump() 196 zlog(ZLOG_NOTICE, "about to trace %d", (int) child->pid); in fpm_php_trace() 205 if (0 > fpm_trace_ready(child->pid)) { in fpm_php_trace() 213 if (0 > fpm_trace_close(child->pid)) { in fpm_php_trace() 221 fpm_pctl_kill(child->pid, FPM_PCTL_CONT); in fpm_php_trace() 224 zlog(ZLOG_NOTICE, "finished trace of %d", (int) child->pid); in fpm_php_trace()
|
/PHP-8.0/ext/pcntl/tests/ |
H A D | 001.phpt | 16 $pid=pcntl_fork(); 17 if ($pid==0) { 22 pcntl_waitpid($pid, $status, $options); 30 $pid=pcntl_fork(); 32 if ($pid==0) { 37 posix_kill($pid, SIGTERM); 38 pcntl_waitpid($pid, $status, $options); 52 $pid=pcntl_fork(); 54 if ($pid==0) { 59 posix_kill($pid, SIGSTOP); [all …]
|
H A D | pcntl_waitpid_rusage1.phpt | 8 $pid = pcntl_fork(); 9 if ($pid == -1) { 11 } else if ($pid) { 13 var_dump(pcntl_waitpid($pid, $status, WUNTRACED, $rusage)); 17 posix_kill($pid, SIGCONT); 20 pcntl_waitpid($pid, $status, WUNTRACED, $rusage); 25 pcntl_waitpid($pid, $status, 0, $rusage); 30 pcntl_waitpid($pid, $status, 0, $rusage);
|
H A D | pcntl_wait.phpt | 8 $pid = pcntl_fork(); 9 if ($pid == -1) { 11 } else if ($pid) { 15 posix_kill($pid, SIGCONT);
|
H A D | bug47566.phpt | 7 $pid = pcntl_fork(); 8 if ($pid == -1) { 11 } elseif ($pid) {
|
H A D | 002.phpt | 14 $pid = pcntl_fork(); 15 if ($pid == -1) { 17 } else if ($pid) { 36 posix_kill($pid, SIGTERM); 46 echo "signo === pid\n"; 47 var_dump($siginfo['pid'] === $pid); 48 pcntl_waitpid($pid, $status); 92 signo === pid
|
H A D | pcntl_fork_basic.phpt | 16 $pid = pcntl_fork(); 17 if ($pid > 0) { 19 var_dump($pid); 21 var_dump($pid);
|
H A D | pcntl_fork_variation.phpt | 16 $pid = pcntl_fork(); 18 if ($pid > 0) { 20 echo "father is $pid\n"; 24 echo "father ($pid) doesn't know its grandsons\n"; 29 echo "son ($pid)\n";
|
/PHP-8.0/ext/posix/tests/ |
H A D | posix_kill_error.phpt | 13 $pid = posix_getpid(); 15 var_dump( posix_kill($pid, 999) ); 17 echo "\n-- Testing posix_kill() function with negative pid --\n"; 18 $pid = -999; 20 var_dump( posix_kill($pid, 999) ); 30 -- Testing posix_kill() function with negative pid --
|
H A D | posix_getsid.phpt | 4 Get the current session id of a process pid (POSIX.1, 4.2.1) 17 $pid = posix_getpid(); 18 echo "\n-- Testing posix_getsid() function with current process pid --\n"; 19 var_dump( is_long(posix_getsid($pid)) ); 25 -- Testing posix_getsid() function with current process pid --
|
H A D | posix_getpgid_error.phpt | 13 echo "\n-- Testing posix_getpgid() with negative pid --\n"; 14 $pid = -99; 15 var_dump( posix_getpgid($pid) ); 22 -- Testing posix_getpgid() with negative pid --
|
/PHP-8.0/ext/pdo_pgsql/tests/ |
H A D | bug68199.phpt | 23 $pid = $db->pgsqlGetPid(); 24 var_dump($pid > 0); 39 var_dump($notify[1] == $pid); 48 var_dump($notify['pid'] == $pid); 56 var_dump($notify[1] == $pid); 64 var_dump($notify['pid'] == $pid); 72 var_dump($notify['pid'] == $pid); 75 var_dump($notify[1] == $pid);
|
H A D | getnotify.phpt | 17 $pid = $db->pgsqlGetPid(); 18 var_dump($pid > 0); 33 var_dump($notify[1] == $pid); 41 var_dump($notify['pid'] == $pid); 48 var_dump($notify[1] == $pid); 55 var_dump($notify['pid'] == $pid); 62 var_dump($notify['pid'] == $pid); 64 var_dump($notify[1] == $pid);
|
/PHP-8.0/ext/standard/tests/general_functions/ |
H A D | proc_nice_basic.phpt | 12 exec('ps -p 1 -o "pid,nice"', $output, $exit_code); 21 $res = shell_exec('ps -p ' . $id .' -o "pid,nice"'); 29 $pid = getmypid(); 30 $niceBefore = getNice($pid); 32 $niceAfter = getNice($pid);
|
/PHP-8.0/ext/standard/tests/http/ |
H A D | server.inc | 25 $pid = pcntl_fork(); 26 if ($pid == -1) { 28 } else if ($pid) { 30 'pid' => $pid, 121 function http_server_kill(int $pid) { 122 posix_kill($pid, SIGTERM); 123 pcntl_waitpid($pid, $status);
|
H A D | bug75981.phpt | 23 ['pid' => $pid, 'uri' => $uri] = http_server($responses); 27 http_server_kill($pid);
|
H A D | http_response_header_05.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 21 http_server_kill($pid);
|
H A D | http_response_header_04.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 21 http_server_kill($pid);
|
H A D | bug75535.phpt | 15 ['pid' => $pid, 'uri' => $uri] = http_server($responses, $output); 20 http_server_kill($pid);
|
H A D | bug73297.phpt | 24 ['pid' => $pid, 'uri' => $uri] = http_server($responses); 29 http_server_kill($pid);
|