3

我正在我的代码中创建子进程。当我调用 fork() 时,子进程应该从下一条语句开始执行,但在我的代码中,子进程在 fork 调用之前执行语句。

#include<stdio.h>
int main()
{
int pid;
FILE *fp;
fp = fopen("oh.txt","w");
fprintf(fp,"i am before fork\n");
pid = fork();
        if(pid == 0)
        {
                fprintf(fp,"i am inside child block\n");
        }
        else{
                fprintf(fp,"i inside parent block\n");
        }
fprintf(fp,"i am inside the common block to both parent and child\n");
fclose(fp);
return 0;
}

这是我得到的输出

输出:

i am before fork
i inside parent block
i am inside the common block to both parent and child
i am before fork
i am inside child block
i am inside the common block to both parent and child

“我在 fork 之前”这一行应该在文件中写入一次,但由孩子和父母写入两次。为什么会这样?

谢谢你。

4

2 回答 2

5

这可能是一个缓冲问题。fprintf不会立即写入文件,而是缓冲输出。当 you 时fork,您最终会得到两个缓冲区副本。

尝试fflush(fp)在分叉前做一个,看看是否能解决问题。

于 2013-02-20T16:17:35.103 回答
3

我猜这是因为您使用 打印fprintf,它被缓冲但不打印,然后在刷新缓冲区时在子进程中打印。

于 2013-02-20T16:17:29.303 回答