Skip to content

Instantly share code, notes, and snippets.

@lattera
Created January 7, 2019 20:56
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 lattera/758b28c1e315cd70e670dd5211388864 to your computer and use it in GitHub Desktop.
Save lattera/758b28c1e315cd70e670dd5211388864 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc, char *argv[])
{
while (printf("%d\n", getpid()))
sleep(15);
return (1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment