HomeSort by: relevance | last modified time | path
    Searched defs:child (Results 1 - 25 of 520) 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)
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...]
nested-subp3.c 40 void child (void) function
56 process (&child);
  /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)
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...]
nested-subp3.c 40 void child (void) function
56 process (&child);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.rocm/
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);
attach-non-stop.c 47 pthread_t child; local
50 rc = pthread_create (&child, NULL, thread_func, NULL);
watchpoint-fork-parent.c 33 pid_t child, pid_got; local
37 child = fork ();
38 switch (child)
44 printf ("child%d: %d\n", nr, (int) getpid ());
45 /* Delay to get both the "child%d" and "parent%d" message printed without
61 printf ("parent%d: %d\n", nr, (int) child);
62 /* Delay to get both the "child%d" and "parent%d" message printed, see
69 assert (pid_got == child);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.rocm/
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);
attach-non-stop.c 47 pthread_t child; local
50 rc = pthread_create (&child, NULL, thread_func, NULL);
  /src/games/sail/
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...]
  /src/external/bsd/mdocml/dist/
eqn_term.c 54 const struct eqn_box *child; local
115 child = bp->first;
116 eqn_box(p, child);
121 child = child->next;
122 if (child != NULL) {
124 eqn_box(p, child);
130 child = child->next;
131 if (child != NULL
    [all...]
  /src/external/bsd/nsd/dist/
ipc.h 29 struct nsd_child *child; member in struct:main_ipc_handler_data
  /src/external/gpl3/binutils/dist/gprof/
i386.c 53 Sym *child; local
80 child = sym_lookup (symtab, destpc);
81 if (child && child->addr == destpc)
88 (unsigned long) destpc, child->name));
89 arc_add (parent, child, (unsigned long) 0);
sparc.c 49 Sym *child; local
73 child = sym_lookup (symtab, dest_pc);
74 if (child)
78 (unsigned long) dest_pc, child->name,
79 (unsigned long) child->addr));
80 if (child->addr == dest_pc)
83 arc_add (parent, child, (unsigned long) 0);
  /src/external/gpl3/binutils.old/dist/gprof/
i386.c 53 Sym *child; local
80 child = sym_lookup (symtab, destpc);
81 if (child && child->addr == destpc)
88 (unsigned long) destpc, child->name));
89 arc_add (parent, child, (unsigned long) 0);
sparc.c 49 Sym *child; local
73 child = sym_lookup (symtab, dest_pc);
74 if (child)
78 (unsigned long) dest_pc, child->name,
79 (unsigned long) child->addr));
80 if (child->addr == dest_pc)
83 arc_add (parent, child, (unsigned long) 0);

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 91011>>