Lines Matching defs:child
30 pid_t child;
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)