Skip to content

Instantly share code, notes, and snippets.

@Grumblesaur
Created October 15, 2015 00:33
Show Gist options
  • Save Grumblesaur/025bf578a64f2be7c48d to your computer and use it in GitHub Desktop.
Save Grumblesaur/025bf578a64f2be7c48d to your computer and use it in GitHub Desktop.
Found in a classmate's shell program's main loop
forknum = fork();
if(forknum == 0){
fprintf(stderr, "parent ");
wait(&childstatus);
}
else{
fprintf(stderr, "child ");
childstatus = 0;
exit(childstatus);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment