Skip to content

Instantly share code, notes, and snippets.

@perillamint
Last active August 29, 2015 14:21
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 perillamint/f3b90873031febf0ac24 to your computer and use it in GitHub Desktop.
Save perillamint/f3b90873031febf0ac24 to your computer and use it in GitHub Desktop.
손놈
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <unistd.h>
#define GPATRON_QUOTE "Everyone, get in here!\n"
int hp = 3;
void gotHit (int signum) {
if(!(--hp)) exit(0);
write(1, GPATRON_QUOTE, sizeof(GPATRON_QUOTE));
if(fork() == 0) {
hp = 3;
}
}
int main(int argc, char **argv) {
signal(SIGTERM, gotHit);
signal(SIGINT, gotHit);
while(1) sleep(10);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment