Skip to content

Instantly share code, notes, and snippets.

@adaedra

adaedra/zombie.c Secret

Created November 30, 2015 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adaedra/f302093d957376aed686 to your computer and use it in GitHub Desktop.
Save adaedra/f302093d957376aed686 to your computer and use it in GitHub Desktop.
#include <unistd.h>
#include <stdlib.h>
int main(void) {
if (fork() == 0) exit(0);
sleep(5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment