Home | History | Annotate | Download | only in wrapsim

Lines Matching full:child

11  * We want to ignore signals while waiting, so Ctrl-C kills the child rather
13 * don't block them for the child too.
163 pid_t child;
165 child = fork();
166 if (child < 0) {
169 } else if (child == 0) {
171 * This is the child, set up LD_PRELOAD if possible and launch.
187 (int) getpid(), (int) getpgrp(), (int) child);
188 result = waitpid(child, &status, 0);
197 } else if (result != child) {
199 result, child);