为什么我的进程总是收到信号SIGPIPE,然后管道坏了。我在gdb中看到了它

时间:2015-02-09 00:07:40

标签: c linux

#include<stdio.h>
int main()
{
        int pid = fork();
        int one[2];
        int two[2];
        int fp=pipe(one);
        int sp=pipe(two);
        int i;
        char *c1,*c2,a1[8],a2[8];
        c1="doggy";
        c2="wangwang";
        if(fp<0||sp<0)
        perror("pipe failed\n");
        if (pid == 0)
        {
                close(one[1]);
                close(two[0]);
                for (i = 0; i < 5; i++)
                {
                        read(one[0],a1,10);
                        printf("%d. %s\n", i + 1,c1);
                        write(two[1],c2,10);
                }
        }
        else
        {
                close(one[0]);
                close(two[1]);
                for (i = 0; i < 5; i++)
                {
                        printf("%d. %s\n", i + 1,c2);
                        write(one[1],c1,8);
                        read(two[0],a2,8);
                }


                wait(NULL);
                                                                                          }
}

我想通过管道同步父进程和子进程。但是在这段代码中,在gdb中,我总是收到信号SIGPIPE,然后管道坏了。为什么? 代码有什么问题?

1 个答案:

答案 0 :(得分:2)

您需要在前叉之前设置管道。 fork()将克隆内存,因此如果你之后设置管道,你不会得到一个管道连接两个实例,但两个没有连接管道。此外,如果您有两个管道并从中读取和写入,则会很危险。这可能会死锁,所以要小心(在你的例子中我认为没问题)。