Skip to content

Instantly share code, notes, and snippets.

@eugeneteo
Forked from codeswimmer/zombie.c
Last active August 29, 2015 14:14
Show Gist options
  • Save eugeneteo/5d4887cd62d1c284f9ae to your computer and use it in GitHub Desktop.
Save eugeneteo/5d4887cd62d1c284f9ae to your computer and use it in GitHub Desktop.
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
int main ()
{
pid_t child_pid;
child_pid = fork ();
if (child_pid > 0) {
sleep (60);
}
else {
exit (0);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment