Fork (computing) Article Index for
Fork
Website Links For
Fork
 

Information About

Fork (computing)




: ''For other uses, see Fork (disambiguation) .''

A fork, when applied to Computing is when a Process creates a copy of itself, which then acts as a " Child " of the original process, now called the " Parent ". More generally, a fork in a Multithreading environment means that a Thread of execution is duplicated.

Under Unix and Unix-like Operating Systems , the parent and the child operations are selected by examining the return value of the fork() System Call . In the child process, the return value of fork() is 0, whereas the return value in the parent process is the PID of the newly created child process.

As soon as fork is called, there will be a separate address space created for the child. The child process will have an exact copy of all the segments of the parent process. Both the parent and child process may execute independent of each other.


EXAMPLE

Here is some sample C Programming Language code to illustrate the idea of forking. The code that is in the "Child process" and "Parent process" sections are executed simultaneously.

int pid;

pid = fork();

if(pid == 0)
{
  • Child process:

  • When fork() returns 0, we are in

  • the child process.

  • Here we count up to ten, one each second.

  • /

  • int j;

for(j=0; j < 10; j++)
{
printf("child: %d
", j);
sleep(1);
}
  • Note that we do not use exit() ---/

  • }

else if(pid > 0)
{
  • Parent process:

  • Otherwise, we are in the parent process.

  • Again we count up to ten.

  • /

  • int i;

for(i=0; i < 10; i++)
{
printf("parent: %d
", i);
sleep(1);
}
}
else
{
  • Error handling. ---/

  • fprintf(stderr, "couldn't fork");

exit(1);
}

This code will print out the following:

parent: 0
child: 0
child: 1
parent: 1
parent: 2
child: 2
child: 3
parent: 3
parent: 4
child: 4
child: 5
parent: 5
parent: 6
child: 6
child: 7
parent: 7
parent: 8
child: 8
child: 9
parent: 9

The order of each output is determined by the kernel.


SEE ALSO