Skip to content

Instantly share code, notes, and snippets.

@codeswimmer
Forked from akahn/zombie.c
Created August 13, 2012 20:51
Show Gist options
  • Save codeswimmer/3344004 to your computer and use it in GitHub Desktop.
Save codeswimmer/3344004 to your computer and use it in GitHub Desktop.
Simulate a zombie process on Linux
#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