Skip to content

Instantly share code, notes, and snippets.

@hamiltont
Forked from javawolfpack/forkprob1.c
Last active August 29, 2015 13:56
Show Gist options
  • Save hamiltont/8945372 to your computer and use it in GitHub Desktop.
Save hamiltont/8945372 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <unistd.h>
int main()
{
/* fork a child process */
fork();
/* fork another child process */
fork();
/* and fork another */
fork();
/* Wait for processes to finish */
join();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment