0

以下代码:

B() { 
   pid_t pid; 
   if ((pid=fork())!= 0) 
       waitpid(pid,NULL,0); 
   printf("2 "); 
   if (fork() == 0) 
      { printf("3 "); exit(0); } 
   printf("5 "); 
   exit(0); 
}

可能有一个输出:我不确定哪一个是正确的输出。

232553
235325
232355
235253
252533

这 2 行表示如果 pid 是父进程,那么等待什么?

if ((pid=fork())!= 0) 
           waitpid(pid,NULL,0); 

那么如果是子进程(fork = 0),那么打印 3.. 对吗?

 if (fork() == 0) 
              { printf("3 "); exit(0); }
4

2 回答 2

5
B() { 
   pid_t pid; 

   /* On success, fork() returns 0 to the child. It returns the child's process 
    * ID to the parent. So this block of code, executes a fork(), and has the
    * parent wait for the child.
    * Amusing sidenote: if the fork() fails, the parent will wait for *any* 
    * child process, since the return will be -1.
    */
   if ((pid=fork())!= 0) 
       waitpid(pid,NULL,0); 

   /* Both the parent and the child will print 2. The parent, will, of course,
    * only print 2 after the child exits, because of the waitpid above.
    */
   printf("2 "); 

   /* Now we fork again. Both the parent and the child from the previous fork will
    * fork again, although the parent will do it *after* the child exit. The resulting 
    * child process will print a single 3 and then exit.
    */
   if (fork() == 0) 
      { printf("3 "); exit(0); } 

   /* Now both the parent and the child print a 5 and exit */
   printf("5 "); 
   exit(0); 
}

正如大卫施瓦茨所说,这个程序的输出将由数字 2、3 和 5 的一些排列组成。没有一个输出是正确的,因为输出取决于进程执行的顺序,这是任意的。

于 2012-12-09T22:45:24.907 回答
3

waitpid函数等待子进程终止。你说的其他一切都是正确的。像这样的程序没有一个正确的输出,因为它取决于进程执行的顺序,这是任意的。

   if ((pid=fork())!= 0) 
       waitpid(pid,NULL,0); 

好的,所以现在父母将等待孩子终止。

   printf("2 "); 

孩子会立即输出 2。在孩子终止后的某个时间,父母将输出 2 。

   if (fork() == 0) 
      { printf("3 "); exit(0); } 

父母和孩子都会分叉。他们的两个孩子都将打印 3 并退出。

   printf("5 "); 

父母和原始孩子都将打印 5。

   exit(0);

父母和原始孩子都将刷新他们的输出缓冲区并终止。

于 2012-12-09T22:43:36.583 回答