Skip to content

Instantly share code, notes, and snippets.

Created October 21, 2015 12:20
Show Gist options
  • Select an option

  • Save anonymous/f44a39855f022c280ecd to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/f44a39855f022c280ecd to your computer and use it in GitHub Desktop.
// my_fork.c
#include <unistd.h>
#include <stdio.h>
int main()
{
fork();
printf("pid=%d, ppid=%d\n",getpid(), getppid());
getchar();
return 0;
}
./my_fork &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment