Home | History | Annotate | Download | only in sandbox

Lines Matching refs:child

58 static int child = 0;
90 * If the user sends a siginto to seunshare, kill the child's session
93 if (child > 0) kill(-child,sig);
429 * process waits for it child to exit to attempt to remove the directory. If
741 /* spawn child process */
742 child = fork();
743 if (child == -1) {
748 if (child == 0) {
860 /* parent waits for child exit to do the cleanup */
861 waitpid(child, &status, 0);
864 /* Make sure all child processes exit */
865 kill(-child,SIGTERM);