fork()函数问题

发布于 2022-09-30 18:44:53 字数 4486 浏览 15 评论 0

关于fork()函数创建子进程  ,是复制fork()语句后面的全部父进程吗?

书上有段fork()代码,执行起来有些不明白的地方!求高手讲解下,代码如下:

#include <stdio.h>
  2 #include <stdlib.h>
  3 #include <sys/types.h>
  4 #include <unistd.h>
  5 #include <sys/wait.h>
  6
  7 int main (void )
  8 {
  9     pid_t child1,child2,child;
10
11     child1 = fork();
12     child2 = fork();
13
14     if(child1 == -1)
15     {
16         printf("child1 fork error\n");
17         exit(1);
18     }
19     else if(child1 == 0)
20     {
21         printf("in child1 : execute 'ls -l'\n");
22         if(execlp("ls","ls","-l",NULL)<0)
23         {
24             printf("child1 execlp error\n");
25         }
26     }
27
28     if(child2 == -1)
29     {
30         printf("child2 fork error\n");
31         exit(1);
32     }
33     else if(child2 == 0)
34     {
35         printf("in child2 : sleep for 5 seconds and then exit\n");
36         sleep(5);
37         exit(0);
38     }
39      else
40     {
41         printf("in father process\n");
42         child=waitpid(child1,NULL,0);
43         if(child == child1)
44         {
45             printf("get child1 exit code\n");
46         }
47         else
48         {
49             printf("error \n");
50         }
51         do
52         {
53             child = waitpid(child2,NULL,WNOHANG);
54             if(child == 0)
55             {
56                 printf("the child2 process has not exited\n");
57                 sleep(1);
58             }
59         }
60         while(child == 0);
61
62         if(child == child2)
63         {
64             printf("get child2 exit code\n");
65         }
66         else
67         {
68             printf("error \n");
69         }
70     }
71     exit(0);
72 }

想问一下,为什么child1 和 child1再创建的子进程  不去执行对child2的判断语句!child1 也对child2进行过创建 也有child2的值阿 ,却在执行完child1 的判断直接结束掉了?是fork()函数的确定的代码段范围直到child1判断结束的地方?

我预想的输出结果应该是 2次 ls ,两次 in father ,两次 sleep  
但结果是  两次 ls, 一次 in father 和 一次 sleep !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

屌丝范 2022-10-07 18:44:53

回复 1# Destiny-Hot

    fork()之后,如果子进程没有调用exec函数族去执行新的程序,则子进程与父进程运行的程序一样。如果执行exec函数,执行了新的程序,则该子进程完全由新程序代替。
   你在 if(child1 == 0)中执行了execlp("ls","ls","-l",NULL),该子进程就执行了ls命令了,所以不会再运行父进程的代码。

燃情 2022-10-07 18:44:53

好复杂的fork,研究了一下,我的理解。
需要注意的是exec之后就进入到ls了,不会再继续走了。
   
                    father--->father
                     /     \
                    /       \
    ls  <----child 1   child2--->sleep
                  /
                 /
    ls <--- child1-2

饭团 2022-10-07 18:44:53

谢谢  明白了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文