有没有一种简单的方法可以清除C中的管道

发布于 2025-01-08 15:44:27 字数 81 浏览 0 评论 0原文

我有一个所有子进程都使用的管道,但在子进程使用该管道与父进程通信之前,我需要清除它,以便父进程正确读取它。 C 中有一个简单的函数可以做到这一点吗?

I have a pipe that all my child processes use, but before a child uses the pipe to talk to the parent I need to clear it so that the parent reads from it correctly. Is there a simple function in C to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

勿挽旧人 2025-01-15 15:44:27

“清除”管道的方法是从管道中读取数据,直到缓冲区为空。这对你没有帮助。我猜测您真正的问题是父级可能会读取来自多个客户端的混合数据。有两种简单的解决方案可以解决您的问题。

  1. 始终写入长度小于 PIPE_BUF 字节的消息,并在一次调用 write 中执行此操作。这将确保对管道的写入是原子的。

  2. 为每个子进程使用单独的管道。在服务器端,可以使用线程,也可以使用带有 selectpoll 的非阻塞 IO。同样,您可以使用 Unix 域套接字,并让每个客户端连接到该套接字(这实际上只是创建单独管道的不同方式)。

The way to "clear" a pipe is to read from it until the buffer is empty. This doesn't help you. I am guessing that your real problem is that the parent might read data that is mixed from multiple clients. There are two easy solutions to your problem.

  1. Always write messages less than PIPE_BUF bytes long, and do this in a single call to write. This will ensure that writes to the pipe are atomic.

  2. Use a separate pipe for each child process. On the server side, either use threads or use nonblocking IO with select or poll. Equivalently, you could use a Unix domain socket, and have each client connect to the socket (this is really just a different way of creating the separate pipes).

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