当没有人可以写入时,从 unix 管道中读取。 (C++)

发布于 2024-09-03 02:34:15 字数 91 浏览 6 评论 0原文

如果我生成一个孩子并传递给他一个管道,则孩子会写入管道的输出(发送给父级),然后孩子就会死亡。父母能从管道中读出孩子死前写下的内容吗? 谢谢。 (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 技术交流群。

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

发布评论

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

评论(1

最终幸福 2024-09-10 02:34:15

是的,但要注意缓冲区空间:如果父进程尚未读取,则子进程将无法写入超过缓冲区大小的内容,这因系统而异,我的为 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.

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