HomeSort by: relevance | last modified time | path
    Searched defs:pid (Results 1 - 25 of 970) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gdb/dist/sim/testsuite/bfin/
getpid.c 11 pid_t pid = getpid(); local
12 if (pid < 0) {
  /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/
getpid.c 11 pid_t pid = getpid(); local
12 if (pid < 0) {
  /src/tests/net/if_tap/
rump_open_tap.c 58 pid_t pid; local
64 pid = fork();
65 switch (pid) {
71 fprintf(fp, "%d\n", pid);
  /src/external/bsd/tmux/dist/compat/
forkpty-haiku.c 34 pid_t pid; local
50 switch (pid = fork()) {
74 return (pid);
  /src/external/gpl2/lvm2/dist/test/
not.c 10 pid_t pid; local
19 pid = fork();
20 if (pid == -1) {
23 } else if (pid == 0) { /* child */
28 waitpid(pid, &status, 0);
33 pid, WTERMSIG(status));
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
foll-fork.c 13 int pid; local
16 pid = fork ();
17 if (pid == 0) /* set breakpoint here */
26 /* printf ("I'm the proud parent of child #%d!\n", pid); */
foll-vfork-exit.c 24 int pid; local
28 pid = 1;
29 pid = vfork (); /* VFORK */
30 if (pid == 0)
fork-no-detach-follow-child-dlopen.c 26 pid_t pid = fork (); local
27 if (pid == 0)
36 if (waitpid (pid, &wstatus, 0) == -1)
killed-outside.c 21 pid_t pid; variable
31 pid = getpid ();
step-over-exit.c 29 int pid; local
31 pid = fork ();
32 if (pid == 0) /* child */
40 pid = fork ();
41 if (pid == 0) /* child */
step-over-fork.c 27 int pid; local
29 pid = fork ();
30 if (pid == 0) /* child */
38 pid = fork ();
39 if (pid == 0) /* child */
47 pid = fork ();
48 if (pid == 0) /* child */
step-over-vfork.c 26 int pid; local
28 pid = vfork ();
29 if (pid == -1)
33 else if (pid != 0)
41 pid = vfork ();
42 if (pid == -1)
46 else if (pid != 0)
54 pid = vfork ();
55 if (pid == -1)
59 else if (pid != 0
    [all...]
watch-vfork.c 25 int pid; local
27 pid = vfork ();
28 if (pid == -1)
32 else if (pid != 0)
34 global = &pid;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.multi/
multi-kill.c 21 static pid_t pid; variable
31 pid = getpid ();
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.rocm/
fork-exec-non-gpu-to-gpu-execer.cpp 31 int pid = FORK (); local
32 if (pid != 0)
precise-memory-fork.c 33 int pid = fork (); local
35 if (pid != 0)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
killed.c 25 int pid; variable
30 kill (pid, SIGKILL);
39 pid = getpid ();
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
foll-fork.c 13 int pid; local
16 pid = fork ();
17 if (pid == 0) /* set breakpoint here */
26 /* printf ("I'm the proud parent of child #%d!\n", pid); */
foll-vfork-exit.c 24 int pid; local
28 pid = 1;
29 pid = vfork (); /* VFORK */
30 if (pid == 0)
fork-no-detach-follow-child-dlopen.c 26 pid_t pid = fork (); local
27 if (pid == 0)
36 if (waitpid (pid, &wstatus, 0) == -1)
killed-outside.c 21 pid_t pid; variable
31 pid = getpid ();
step-over-exit.c 29 int pid; local
31 pid = fork ();
32 if (pid == 0) /* child */
40 pid = fork ();
41 if (pid == 0) /* child */
step-over-fork.c 27 int pid; local
29 pid = fork ();
30 if (pid == 0) /* child */
38 pid = fork ();
39 if (pid == 0) /* child */
47 pid = fork ();
48 if (pid == 0) /* child */
step-over-vfork.c 26 int pid; local
28 pid = vfork ();
29 if (pid == -1)
33 else if (pid != 0)
41 pid = vfork ();
42 if (pid == -1)
46 else if (pid != 0)
54 pid = vfork ();
55 if (pid == -1)
59 else if (pid != 0
    [all...]
watch-vfork.c 25 int pid; local
27 pid = vfork ();
28 if (pid == -1)
32 else if (pid != 0)
34 global = &pid;

Completed in 37 milliseconds

1 2 3 4 5 6 7 8 91011>>