Created
August 31, 2014 23:58
-
-
Save brianherman/56294700a559525b7d10 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pid_t pid; | |
pid = fork(); | |
if(pid < 0) { | |
fprintf(stderr,"Fork Failed"); | |
exit(-1); | |
}else if( pid==0 ){ | |
} |
Author
brianherman
commented
Sep 1, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment