C ++管道错误,永远管道等待

Posted

技术标签:

【中文标题】C ++管道错误,永远管道等待【英文标题】:C++ pipe error, pipe_wait forever 【发布时间】:2012-01-26 19:32:33 【问题描述】:

这是我的代码

#include <iostream>
#include <string>
#include <sys/wait.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <vector>
#include <sstream>
#include <stdio.h>
using namespace std;

int main() 

    int pipe_A[2];
    int pipe_B[2];

    pipe(pipe_A);
    pipe(pipe_B);

    pid_t pid_A, pid_B, pid_C;

    if (!(pid_A = fork())) 
        dup2(pipe_A[1], 1); /* redirect standard output to pipe_A write end */

        system("./data");
        exit(0);
    

    if (!(pid_B = fork())) 
        dup2(pipe_A[0], 0); /* redirect standard input to pipe_A read end */
        dup2(pipe_B[1], 1); /* redirect standard output to pipe_B write end */

        system("grep 5");
        exit(0);
    

    if (!(pid_C = fork())) 
        dup2(pipe_B[0], 0); /* redirect standard input to pipe_B read end */

        system("grep 2");
        exit(0);
    

    return 0;

其中“./data”是我的测试样本:

for(int i=0;i<100;i++)
cout<<i<<endl;

我尝试按照这个link建一个管道:

显然我的程序不起作用。在我运行我的程序后,将有两个进程永远在执行 pipe_wait(我从系统监视器中看到了这一点)。似乎有一些管道应该关闭。我该如何解决?

【问题讨论】:

【参考方案1】:

每个孩子都有自己的父母文件描述符的副本。 dup2 创建另一个副本。在写入端的所有副本都关闭之前,管道的读取端不会返回 EOF。

因此,在每次调用 fork + dup2 之后,继续 close 所有四个 pipe_A[0]、pipe_A[1]、pipe_B[0] 和 pipe_B[1]。

在你 fork 所有孩子之后,还要在父母中关闭它们。 (在您的示例中这不是绝对必要的,因为它们会在 main() 返回时自动关闭。但无论如何我都会这样做以保持清洁。)

【讨论】:

以上是关于C ++管道错误,永远管道等待的主要内容,如果未能解决你的问题,请参考以下文章

通过共享内存和管道的 IPC 给出分段错误:C 中的 11

在 shell 管道中捕获错误代码

如何修复 Azure 管道错误 NETSDK1152?

C# 异步命名管道永远等待

TBB 管道的错误输出

错误:无法构建管道:没有元素“audiotestsrc”