Skip to content

Instantly share code, notes, and snippets.

@Killavus
Created April 16, 2015 00:37
Show Gist options
  • Save Killavus/f903a044502cb1bc5b2f to your computer and use it in GitHub Desktop.
Save Killavus/f903a044502cb1bc5b2f to your computer and use it in GitHub Desktop.
#include <unistd.h>
#include <sys/wait.h>
#include <stdlib.h>
int main(void) {
pid_t cpid = fork();
if(cpid == 0) {
exit(0);
}
else
{
for(;;) {}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment