Skip to content

Instantly share code, notes, and snippets.

@mikepea
Created February 13, 2015 13:14
Show Gist options
  • Save mikepea/4697dd4972f7d1f08c0c to your computer and use it in GitHub Desktop.
Save mikepea/4697dd4972f7d1f08c0c to your computer and use it in GitHub Desktop.
C program to create a zombie process - useful for testing monitoring.
#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