Lines Matching full:child
46 The new process (child process) is an exact copy of the
50 The child process has a unique process ID.
52 The child process has a different parent
55 The child process has its own copy of the parent's descriptors,
61 the child and the parent, so that an
63 on a descriptor in the child process can affect a subsequent
72 The child process' resource utilizations
81 is cleared for the child.
86 and after the child is created, in parent and child.
88 The child process has only one thread,
95 are guaranteed to work in the child process until a call to
106 services in the child process.
130 are available in the child if forked from multi-threaded parent.
132 child after
150 of 0 to the child process and return the process ID of the child
153 to the parent process, no child process is created, and the global
173 * If child is expected to use stdio(3), state of
175 * parent and child, to avoid double output and other
184 printf("Hello from child process!\en");
187 * Since we wrote into stdout, child needs to use
190 * once in parent, and once in the child. If such
192 * terminating child with _exit(2) or _Exit(3).
199 printf("Hello from parent process (child's PID: %d)!\en", pid);
207 Hello from parent process (child's PID: 27804)!
208 Hello from child process!
213 system call will fail and no child process will be created if: