当没有人可以写入时,从 unix 管道中读取。 (C++)
如果我生成一个孩子并传递给他一个管道,则孩子会写入管道的输出(发送给父级),然后孩子就会死亡。父母能从管道中读出孩子死前写下的内容吗? 谢谢。 (ps:我说的是C++)
If I spawn a child and pass him a pipe, the child writes to the output of the pipe(to the parent) and after that the child dies. Can the parent read from the pipe what the child had written before it died?
Thanks.
(ps: I'm talking about C++)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,但要注意缓冲区空间:如果父进程尚未读取,则子进程将无法写入超过缓冲区大小的内容,这因系统而异,我的为 16k。
Yes, but watch for the buffer space: if the parent is not yet reading, the child will not be able to write more than the buffer size, which is different from system to system, 16k on mine.