HomeSort by: relevance | last modified time | path
    Searched refs:child_pid (Results 1 - 25 of 63) sorted by relevancy

1 2 3

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
attach-non-pgrp-leader.c 22 pid_t child_pid; variable
34 child_pid = fork ();
35 if (child_pid == -1)
interrupt-daemon-attach.c 22 pid_t child_pid; variable
35 child_pid = fork ();
37 switch (child_pid)
attach-non-pgrp-leader.exp 48 set child_pid [get_integer_valueof "child_pid" -1]
49 if {$child_pid == -1} {
61 gdb_test "attach $child_pid" \
62 "Attaching to program.*, process $child_pid.*" \
69 "Detaching from program: .*process $child_pid\r\n\\\[Inferior $decimal \\(.*\\) detached\\\]"
interrupt-daemon-attach.exp 48 set child_pid [get_integer_valueof "child_pid" -1]
49 if {$child_pid == -1} {
65 gdb_test "attach $child_pid" \
66 "Attaching to program.*, process $child_pid.*" \
79 remote_exec host "kill -9 $child_pid"
traced-thread.exp 35 set child_pid [get_integer_valueof child_thread_pid -1 "get child pid"]
43 gdb_test "attach $child_pid" \
54 remote_exec target "kill -9 $child_pid"
run-control-while-bg-execution.exp 69 set child_pid [get_integer_valueof "mypid" -1]
70 if { $child_pid == -1 } {
79 remote_exec target "kill $child_pid"
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
attach-non-pgrp-leader.c 22 pid_t child_pid; variable
34 child_pid = fork ();
35 if (child_pid == -1)
interrupt-daemon-attach.c 22 pid_t child_pid; variable
35 child_pid = fork ();
37 switch (child_pid)
attach-non-pgrp-leader.exp 49 set child_pid [get_integer_valueof "child_pid" -1]
50 if {$child_pid == -1} {
63 gdb_test "attach $child_pid" \
64 "Attaching to program.*, process $child_pid.*" \
71 "Detaching from program: .*process $child_pid\r\n\\\[Inferior $decimal \\(.*\\) detached\\\]"
interrupt-daemon-attach.exp 49 set child_pid [get_integer_valueof "child_pid" -1]
50 if {$child_pid == -1} {
67 gdb_test "attach $child_pid" \
68 "Attaching to program.*, process $child_pid.*" \
81 remote_exec host "kill -9 $child_pid"
traced-thread.exp 35 set child_pid [get_integer_valueof child_thread_pid -1 "get child pid"]
43 gdb_test "attach $child_pid" \
54 remote_exec target "kill -9 $child_pid"
run-control-while-bg-execution.exp 75 set child_pid [get_integer_valueof "mypid" -1]
76 if { $child_pid == -1 } {
85 remote_exec target "kill $child_pid"
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.gc/
sigmaskgc.d 29 auto child_pid = fork();
30 assert(child_pid >= 0);
31 if (child_pid == 0)
  /src/external/mit/libuv/dist/test/
test-fork.c 81 static void assert_wait_child(pid_t child_pid) {
85 waited_pid = waitpid(child_pid, &child_stat, 0);
90 ASSERT_EQ(child_pid, waited_pid);
104 pid_t child_pid; local
108 child_pid = -1;
110 child_pid = fork();
112 ASSERT_NE(child_pid, -1);
114 if (child_pid != 0) {
116 assert_wait_child(child_pid);
131 pid_t child_pid; local
173 pid_t child_pid; local
250 pid_t child_pid; local
305 pid_t child_pid; local
386 pid_t child_pid; local
530 pid_t child_pid; local
724 pid_t child_pid; local
    [all...]
  /src/lib/libwrap/
shell_cmd.c 48 int child_pid; local
56 switch (child_pid = fork()) {
64 while ((wait_pid = wait((int *) 0)) != -1 && wait_pid != child_pid)
  /src/external/gpl2/xcvs/dist/src/
rsh-client.c 48 int child_pid; local
121 child_pid = popenRW (rsh_argv, pipes);
122 if (child_pid < 0)
126 make_bufs_from_fds (pipes[0], pipes[1], child_pid, to_server_p,
145 int child_pid; local
194 child_pid = piped_child (argv, &tofd, &fromfd, true);
196 if (child_pid < 0)
201 make_bufs_from_fds (tofd, fromfd, child_pid, root, to_server_p,
release.c 59 setup_update_command (pid_t *child_pid)
85 *child_pid = run_piped (&tofd, &fromfd);
86 if (*child_pid < 0)
97 close_update_command (FILE *fp, pid_t child_pid)
103 w = waitpid (child_pid, &status, 0);
106 error (1, errno, "waiting for process %d", child_pid);
240 pid_t child_pid; local
248 fp = setup_update_command (&child_pid);
271 status = close_update_command (fp, child_pid);
  /src/external/gpl3/gdb.old/dist/gdb/nat/
linux-ptrace.c 270 int child_pid; local
283 child_pid = __clone2 (function, child_stack, STACK_SIZE,
286 child_pid = clone (function, child_stack + STACK_SIZE,
290 child_pid = fork ();
292 if (child_pid == 0)
296 if (child_pid == -1)
299 return child_pid;
317 static void linux_test_for_exitkill (int child_pid);
324 int child_pid, ret, status; local
340 child_pid = linux_fork_to_function (NULL, linux_child_function)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/nat/
linux-ptrace.c 274 int child_pid; local
287 child_pid = __clone2 (function, child_stack, STACK_SIZE,
290 child_pid = clone (function, child_stack + STACK_SIZE,
294 child_pid = fork ();
296 if (child_pid == 0)
300 if (child_pid == -1)
303 return child_pid;
321 static void linux_test_for_exitkill (int child_pid);
328 int child_pid, ret, status; local
344 child_pid = linux_fork_to_function (NULL, linux_child_function)
    [all...]
  /src/sys/compat/common/
kern_exit_43.c 89 int error, status, child_pid = WAIT_ANY; local
93 error = do_sys_wait(&child_pid, &status, 0, NULL);
95 error = do_sys_wait(&child_pid, &status,
99 error = do_sys_wait(&child_pid, &status, 0, NULL);
101 retval[0] = child_pid;
  /src/dist/pf/sbin/pflogd/
privsep.c 59 static volatile pid_t child_pid = -1; variable
94 child_pid = fork();
95 if (child_pid < 0)
98 if (!child_pid) {
311 if (child_pid != -1)
312 kill(child_pid, sig);
  /src/external/gpl3/gdb.old/dist/gdb/
x86-linux-nat.c 49 x86_linux_nat_target::low_new_fork (struct lwp_info *parent, pid_t child_pid)
76 child_state = x86_debug_reg_state (child_pid);
  /src/external/gpl3/gdb/dist/gdb/
x86-linux-nat.c 50 x86_linux_nat_target::low_new_fork (struct lwp_info *parent, pid_t child_pid)
77 child_state = x86_debug_reg_state (child_pid);
  /src/external/gpl3/gcc/dist/libcc1/
gdbctx.hh 216 pid_t child_pid = fork (); local
218 if (child_pid == -1)
227 if (child_pid == 0)
257 if (waitpid (child_pid, &status, 0) == -1)
  /src/external/gpl3/gcc.old/dist/libcc1/
gdbctx.hh 216 pid_t child_pid = fork (); local
218 if (child_pid == -1)
227 if (child_pid == 0)
257 if (waitpid (child_pid, &status, 0) == -1)

Completed in 34 milliseconds

1 2 3