有两个进程,父进程和子进程 父进程stdin中有一些数据。内容是:
the 1 line
the 2 line
the 3 line
the 4 line
父流程代码:
//parent
fgets(buffer, 1000, stdin);
printf("I have data:%s", buffer); //print "I have data:the 1 line"
if(!fork())
{
fgets(buffer, 1000, stdin);
printf("I have data:%s", buffer); //print "I have data:the 2 line"
execv("child", NULL);
}
else
{
exit(0);
}
子进程代码:
//child
main()
{
fgets(buffer, 1000, stdin); //blocked if parent stdin content size<4096
printf("I have no data:%s", buffer);
}
为什么呢? 子进程是否可以读取stdin中的第三行?
答案 0 :(得分:1)
fgets
是一个stdio函数,因此它使用stdio缓冲区,它位于进程的地址空间中。当你执行时,该缓冲区会与原始程序的其余部分一起消失,并且exec'ed程序会分配自己的stdio缓冲区。
如果您的文件是可搜索的,那么fseek
在exec可能有帮助之前相对于SEEK_CUR
定位0(它可以将底层fd重新定位到正确的点以继续从stdio停止的位置读取)