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

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
fork-print-inferior-events.c 24 pid_t child; local
26 child = fork ();
27 switch (child)
fork-print-inferior-events.c 24 pid_t child; local
26 child = fork ();
27 switch (child)
inferior-died.c 30 pid_t child = fork (); local
32 if (child == 0)
35 waitpid (child, NULL, 0);
interrupt-daemon.c 30 pid_t child; local
35 create a session. Fork so the child can create a new
37 child = fork ();
38 if (child == -1)
40 else if (child != 0)
44 /* In child. Switch to a new session. */
49 /* Fork again, so that the grand child (what we want to debug)
53 child = fork ();
54 if (child == -1)
56 else if (child != 0
    [all...]
inferior-died.c 30 pid_t child = fork (); local
32 if (child == 0)
35 waitpid (child, NULL, 0);
interrupt-daemon.c 30 pid_t child; local
35 create a session. Fork so the child can create a new
37 child = fork ();
38 if (child == -1)
40 else if (child != 0)
44 /* In child. Switch to a new session. */
49 /* Fork again, so that the grand child (what we want to debug)
53 child = fork ();
54 if (child == -1)
56 else if (child != 0
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
fork-print-inferior-events.c 24 pid_t child; local
26 child = fork ();
27 switch (child)
fork-print-inferior-events.c 24 pid_t child; local
26 child = fork ();
27 switch (child)
inferior-died.c 30 pid_t child = fork (); local
32 if (child == 0)
35 waitpid (child, NULL, 0);
interrupt-daemon.c 30 pid_t child; local
35 create a session. Fork so the child can create a new
37 child = fork ();
38 if (child == -1)
40 else if (child != 0)
44 /* In child. Switch to a new session. */
49 /* Fork again, so that the grand child (what we want to debug)
53 child = fork ();
54 if (child == -1)
56 else if (child != 0
    [all...]
inferior-died.c 30 pid_t child = fork (); local
32 if (child == 0)
35 waitpid (child, NULL, 0);
interrupt-daemon.c 30 pid_t child; local
35 create a session. Fork so the child can create a new
37 child = fork ();
38 if (child == -1)
40 else if (child != 0)
44 /* In child. Switch to a new session. */
49 /* Fork again, so that the grand child (what we want to debug)
53 child = fork ();
54 if (child == -1)
56 else if (child != 0
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.rocm/
precise-memory-fork.c 26 child (void) function
38 child ();
precise-memory-fork.c 26 child (void) function
38 child ();
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
killed.c 37 pthread_t child; local
40 pthread_create (&child, 0, child_func, 0);
killed.c 37 pthread_t child; local
40 pthread_create (&child, 0, child_func, 0);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.rocm/
precise-memory-fork.c 26 child (void) function
38 child ();
precise-memory-fork.c 26 child (void) function
38 child ();
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
killed.c 37 pthread_t child; local
40 pthread_create (&child, 0, child_func, 0);
killed.c 37 pthread_t child; local
40 pthread_create (&child, 0, child_func, 0);
  /src/games/sail/
pl_1.c 129 child(int n __unused) function
140 signal(SIGCHLD, child);
pl_1.c 129 child(int n __unused) function
140 signal(SIGCHLD, child);
  /src/sys/dev/fdt/
cpus.c 62 int child; local
69 for (child = OF_child(phandle); child; child = OF_peer(child)) {
70 if (!cpus_cpu_enabled(child))
72 fdt_add_child(self, child, faa, 0);
77 cpus_cpu_enabled(int child)
82 s = fdtbus_get_string(child, "device_type");
87 s = fdtbus_get_string(child, "status")
    [all...]
  /src/tests/kernel/
h_fpufork.c 42 pid_t child, pid; local
51 case 0: /* child */
57 if ((child = wait(&status)) == -1)
60 errx(1, "child exited on signal %d", WTERMSIG(status));
62 errx(1, "child didn't exit");
  /src/external/bsd/kyua-cli/dist/utils/process/
child.hpp 29 /// \file utils/process/child.hpp
32 /// The child module provides a set of functions to spawn subprocesses with
66 /// Child process spawner and controller.
67 class child : noncopyable { class in namespace:utils::process
73 static std::unique_ptr< child > fork_capture_aux(void);
75 static std::unique_ptr< child > fork_files_aux(const fs::path&,
78 explicit child(impl *);
81 ~child(void);
84 static std::unique_ptr< child > fork_capture(Hook);
88 static std::unique_ptr< child > fork_files(Hook, const fs::path&
    [all...]

Completed in 38 milliseconds

1 2 3 4 5 6 7 8 91011>>