I have executed a block of code. And it is as shown below:

#include<stdio.h>

main() {
int i=0;
fork();
printf("The value of i is:%d\n",++i);
fork();
printf("The value of j is:%d\n",++i);
fork();
wait();
}

And I got following output:

The value of i is:1
The value of j is:2
The value of i is:1
The value of j is:2
The value of j is:2
pckoders@ubuntu:~$ The value of j is:2

Can anyone explain to me what role fork() and wait() functions play here?

link|improve this question

56% accept rate
Which part of the man pages didn't you understand? What exactly is the question? – johannes Sep 30 '11 at 11:17
3  
@johannes, then we can remove most API questions from SO? – Amigable Clark Kant Sep 30 '11 at 11:24
feedback

3 Answers

up vote 5 down vote accepted

The program generates a tree of processes. At every fork, this tree branches in two. If you grab a piece of paper, it's not very hard to draw this tree; the only thing that's hard is getting the i values right due to your use of prefix ++. If you let each of the process sleep for a few seconds at the end, you can also observe the tree using the pstree program.

Each one of the processes then runs the wait system call, which waits for any one of its child processes (child nodes in the process tree) to finish.

link|improve this answer
2  
Not really the first, if we want to be pedantic, but any child, right? – Amigable Clark Kant Sep 30 '11 at 11:34
@AmigableClarkKant: strictly, yes. Updated the answer. – larsmans Sep 30 '11 at 12:15
I got it larsmans. Thank a lot.. – Babanna Duggani Sep 30 '11 at 12:43
1  
I think a key word there is that it waits for ONE child. That's why it exits before the last line is printed. – Per Johansson Sep 30 '11 at 13:07
feedback

fork() call is a literally fork. After it's finished you are having 2 exact processes with exact stack and all descriptors are referring to same objects. You can distinguish them by a return value. For child process fork() returns 0, for parent - child's process id.

so

main() {
int i=0;
fork(); 
// at this point you are having 2 processes. stdout and stdin are basically just dupplicates.
//          (P)
//        /     \
//     (P)       (C)
//   prints1    prints 1
printf("The value of i is:%d\n",++i); // so 2 processes with print 1
fork();
// now you are having 4 processes( both parent and children forked)
//                   (P)
//                 /     \
//               /         \
//           (P)            (C)
//         /     \         /   \
//      (PP)     (PC)    (CP)  (CC)
//   prints 2  prints 2  prints 2  prints 2
printf("The value of j is:%d\n",++i);
fork();
// now 4 processes are forking. now you have 8 processes
//                                   (P)
//                                /       \
//                            /              \
//                         /                    \
//                   (P)                           (C)             
//                 /     \                       /     \           
//               /         \                   /         \          
//          (PP)           (PC)             (CP)          (CC) 
//         /     \        /     \          /    \       /     \        
//     (PPP)    (PPC)  (PCP)   (PCC)   (CPP)   (CPC)  (CCP)  (CCC)   

wait();
}
link|improve this answer
GreenScape , I am very happy with the way you explained the concept with such a neat diagram. I got it. Thanks for your concern and reply. But clear me one more doubt i.e, why it is printing value of i and j alternatively? After first fork(), immediately, it should display the value of i two times one after the other. But it is showing value of j after printing i's value once... – Babanna Duggani Sep 30 '11 at 13:29
That's totally depend's on OS's scheduler. Imagine process P forked into P and C. CPU working with P process. It prints 1. Goes to next fork. Performing it. Process PP prints 2. Scheduler switches to process C, now CPU work's with C. C prints 1. an so on... – GreenScape Sep 30 '11 at 13:42
feedback

After the first fork() there were two processes (the current and it's exact copy, the child), which both printed 1.

Each of these two processes duplicated itself with the second fork() call, and there were 4 processes, each of them printed 2.

Their output comes in random order, as it always does with parallel execution.

link|improve this answer
Thank you eugene. I understood the flow. Thanks again for your concern. – Babanna Duggani Sep 30 '11 at 12:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.