Home
last modified time | relevance | path

Searched refs:pid (Results 1 – 25 of 166) sorted by relevance

1234567

/php-src/sapi/fpm/fpm/
H A Dfpm_trace_ptrace.c27 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 Dfpm_trace_pread.c22 int fpm_trace_signal(pid_t pid) /* {{{ */ in fpm_trace_signal() argument
24 if (0 > fpm_pctl_kill(pid, FPM_PCTL_STOP)) { in fpm_trace_signal()
25 zlog(ZLOG_SYSERROR, "failed to send SIGSTOP to %d", pid); in fpm_trace_signal()
32 int fpm_trace_ready(pid_t pid) /* {{{ */ in fpm_trace_ready() argument
36 sprintf(buf, "/proc/%d/" PROC_MEM_FILE, (int) pid); in fpm_trace_ready()
46 int fpm_trace_close(pid_t pid) /* {{{ */ in fpm_trace_close() argument
H A Dfpm_trace_mach.c44 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 Dfpm_trace.h8 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 Dfpm_children.c146 struct fpm_child_s *fpm_child_find(pid_t pid) /* {{{ */ in fpm_child_find() argument
154 if (child->pid == pid) { in fpm_child_find()
224 pid_t pid; in fpm_children_bury() local
227 while ( (pid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) { in fpm_children_bury()
232 child = fpm_child_find(pid); in fpm_children_bury()
275 zlog(ZLOG_NOTICE, "child %d stopped for tracing", (int) pid); in fpm_children_bury()
412 pid_t pid; in fpm_children_make() local
454 pid = fork(); in fpm_children_make()
456 switch (pid) { in fpm_children_make()
475 child->pid = pid; in fpm_children_make()
[all …]
H A Dfpm_php_trace.c40 pid_t pid = child->pid; in fpm_php_trace_dump() local
51 fprintf(slowlog, "\n%s [pool %s] pid %d\n", buf, child->wp->config->name, (int) pid); in fpm_php_trace_dump()
195 zlog(ZLOG_NOTICE, "about to trace %d", (int) child->pid); in fpm_php_trace()
204 if (0 > fpm_trace_ready(child->pid)) { in fpm_php_trace()
212 if (0 > fpm_trace_close(child->pid)) { in fpm_php_trace()
220 fpm_pctl_kill(child->pid, FPM_PCTL_CONT); in fpm_php_trace()
223 zlog(ZLOG_NOTICE, "finished trace of %d", (int) child->pid); in fpm_php_trace()
/php-src/ext/pcntl/tests/
H A D001.phpt17 $pid=pcntl_fork();
18 if ($pid==0) {
23 pcntl_waitpid($pid, $status, $options);
31 $pid=pcntl_fork();
33 if ($pid==0) {
38 posix_kill($pid, SIGTERM);
39 pcntl_waitpid($pid, $status, $options);
53 $pid=pcntl_fork();
55 if ($pid==0) {
60 posix_kill($pid, SIGSTOP);
[all …]
H A Dpcntl_rfork_flags.phpt13 $pid = pcntl_rfork(RFFDG);
14 if ($pid > 0) {
16 var_dump($pid);
18 var_dump($pid);
22 $pid = pcntl_rfork(RFCFDG);
23 if ($pid > 0) {
25 var_dump($pid);
H A Dpcntl_waitpid_rusage1.phpt8 $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 Dpcntl_rfork_nowait.phpt14 $pid = pcntl_rfork(RFNOWAIT|RFTSIGZMB,SIGUSR1);
15 if ($pid > 0) {
16 var_dump($pid);
18 var_dump($pid);
19 sleep(2); // as the child does not wait so we see its "pid"
H A D002.phpt20 $pid = pcntl_fork();
21 if ($pid == -1) {
23 } else if ($pid) {
42 posix_kill($pid, SIGTERM);
52 echo "signo === pid\n";
53 var_dump($siginfo['pid'] === $pid);
54 pcntl_waitpid($pid, $status);
77 signo === pid
H A Dpcntl_setns_newpid.phpt14 $pid = pcntl_fork();
15 if ($pid == -1) die("pcntl_fork failed");
16 if ($pid != 0) {
17 var_dump(pcntl_setns($pid, CLONE_NEWPID));
H A Dwaiting_on_sigchild_pcntl_wait.phpt17 while (($pid = pcntl_wait($status, WUNTRACED | WNOHANG)) > 0) {
19 unset($processes[$pid]);
26 $pid = proc_get_status($process)['pid'];
27 $processes[$pid] = $process;
H A Dpcntl_setns_basic.phpt13 $pid = pcntl_fork();
14 if ($pid == -1) die("pcntl_fork failed");
15 if ($pid != 0) {
17 pcntl_setns($pid, 0);
H A Dpcntl_wait.phpt8 $pid = pcntl_fork();
9 if ($pid == -1) {
11 } else if ($pid) {
15 posix_kill($pid, SIGCONT);
H A Dbug47566.phpt7 $pid = pcntl_fork();
8 if ($pid == -1) {
11 } elseif ($pid) {
H A Dpcntl_fork_variation.phpt14 $pid = pcntl_fork();
16 if ($pid > 0) {
18 echo "father is $pid\n";
22 echo "father ($pid) doesn't know its grandsons\n";
27 echo "son ($pid)\n";
H A Dpcntl_fork_basic.phpt14 $pid = pcntl_fork();
15 if ($pid > 0) {
17 var_dump($pid);
19 var_dump($pid);
/php-src/ext/posix/tests/
H A Dposix_kill_error.phpt11 $pid = posix_getpid();
13 var_dump( posix_kill($pid, 999) );
15 echo "\n-- Testing posix_kill() function with negative pid --\n";
16 $pid = -999;
18 var_dump( posix_kill($pid, 999) );
28 -- Testing posix_kill() function with negative pid --
H A Dposix_getsid.phpt4 Get the current session id of a process pid (POSIX.1, 4.2.1)
15 $pid = posix_getpid();
16 echo "\n-- Testing posix_getsid() function with current process pid --\n";
17 var_dump( is_long(posix_getsid($pid)) );
23 -- Testing posix_getsid() function with current process pid --
H A Dposix_getpgid_error.phpt15 echo "\n-- Testing posix_getpgid() with negative pid --\n";
16 $pid = -99;
17 var_dump( posix_getpgid($pid) );
24 -- Testing posix_getpgid() with negative pid --
/php-src/Zend/
H A Dzend_max_execution_timer.c48 pid_t pid = getpid(); in zend_max_execution_timer_init() local
50 if (EG(pid) == pid) { in zend_max_execution_timer_init()
69 EG(pid) = pid; in zend_max_execution_timer_init()
82 if (!EG(pid)) { in zend_max_execution_timer_settime()
110 if (EG(pid) != getpid()) { in zend_max_execution_timer_shutdown()
114 EG(pid) = 0; in zend_max_execution_timer_shutdown()
/php-src/ext/pdo_pgsql/tests/
H A Dbug68199.phpt25 $pid = $db->pgsqlGetPid();
26 var_dump($pid > 0);
41 var_dump($notify[1] == $pid);
50 var_dump($notify['pid'] == $pid);
58 var_dump($notify[1] == $pid);
66 var_dump($notify['pid'] == $pid);
74 var_dump($notify['pid'] == $pid);
77 var_dump($notify[1] == $pid);
H A Dgetnotify.phpt19 $pid = $db->pgsqlGetPid();
20 var_dump($pid > 0);
35 var_dump($notify[1] == $pid);
43 var_dump($notify['pid'] == $pid);
50 var_dump($notify[1] == $pid);
57 var_dump($notify['pid'] == $pid);
64 var_dump($notify['pid'] == $pid);
66 var_dump($notify[1] == $pid);
/php-src/ext/standard/tests/http/
H A Dserver.inc25 $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);

Completed in 30 milliseconds

1234567