gpt4 book ai didi

c - 一个简单的fork程序

转载 作者:太空宇宙 更新时间:2023-11-04 02:50:59 25 4
gpt4 key购买 nike

#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
int main ()
{
pid_t child_pid;
printf ("the main program process ID is %d\n", (int) getpid());
child_pid = fork () ;
if (child_pid != 0)
{
printf ("this is the parent process, with id %d\n", (int) getpid ());
printf ("the child's process ID is %d\n",(int) child_pid );
}
else
printf ("this is the child process, with id %d\n", (int) getpid ());
return 0;
}

我编写了一个简单的 fork 程序来创建一个进程,当我运行该程序时,我得到如下输出:

the main program process ID is 3322
this is the child process , with ID 0

现在我的观点是,为什么 if block 没有被执行,在父进程中 fork() 的返回值不等于 0 那为什么我没有得到 if block 的任何输出?

最佳答案

下面的代码至少有两个问题:

#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
int main ()
{
pid_t child_pid;
printf ("the main program process ID is %d\n", (int) getpid());
child_pid = fork () ;
if (child_pid > 0)
{
printf ("this is the parent process, with id %d\n", (int) getpid ());
printf ("the child's process ID is %d\n",(int) child_pid );
}
else if (child_pid == 0)
printf ("this is the child process, with id %d\n", (int) getpid ());
else
printf ("fork failed\n");

return 0;
}
  1. 在第一个 printf() 之后它没有刷新输出缓冲区。

    如果这个程序的输出被重定向到一个文件,输出将变成 block 缓冲,那么这个printf()的输出可能会也可能不会被写入到输出文件,因此,输出文件可能是五行或四行(实际上,大多数是五行)。

    在第一个printf()之后添加一个fflush(stdout);可以解决这个问题。

  2. 父进程在子进程之前终止。

    在这种情况下,在这个程序的几千次运行中有一两次,子进程的输出丢失了,输出文件只有三行。但是在添加 fflush() 之后,输出文件应该是四行。

    我真的不明白为什么会这样,或者它是否正确。但幸运的是,它很容易修复。在第三个 printf() 后添加一个 wait(NULL); 就够了。


这是来自 Art 的一些非常有用的解释:

  1. POSIX 要求 fork 后的子进程中的文件描述符指向相同的文件描述(文件描述与文件描述符不同)。文件描述包含(除其他外)文件偏移量。 printf 最终将通过 write 写出其输出,并且 write 保证以原子方式更新文件偏移量并写出数据。因此,只要程序不查找,在 fork 程序中重定向输出就是安全的(您不应该在 stdout 上执行此操作,而 printf 绝对不应该执行此操作)。

  2. 先前评论中不适合的引用:file description , fork .

关于c - 一个简单的fork程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22220787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com