0

我想尝试与子进程和父进程进行管道通信。父进程写入管道,子进程读取此内容,但我的程序出现错误“写入:管道损坏”。如何更改此代码?谢谢。

#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <termios.h>
#include <errno.h>
#include <fcntl.h>


int main(void)
{
    int i=0;
    int child=5;
    int fdp;
    int fds[2];
    int controlRead;
    int controlWrite;
    char pathName[30] = {"Trying Pipe Communication\n"};


    if(pipe(fds) < 0)
    {
        perror("pipe");
        exit(EXIT_FAILURE);
    }

    do{

        if(child == 0)
        {
            close(fds[1]);
            if( (controlRead = read(fds[0],pathName,sizeof(pathName)) ) <= 0)
            {
                perror("read");
                exit(EXIT_FAILURE);
            }
            close(fds[0]);

            printf("boru :%s\n",pathName);
            wait();
        }
        else
        {

            printf("Parent process\n");
            close(fds[0]);
            if( (controlWrite = write(fds[1],&pathName,sizeof(pathName))) <= 0)
            {
                perror("write");
                exit(EXIT_FAILURE);
            }
            close(fds[1]);


        }
        i++;
        child = fork();
    }while(i<3);

    return 0;
}
4

2 回答 2

2

错误“写入:损坏的管道”。如何更改此代码?

在写入之前不要破坏管道。在第一次通过 do/while 循环时,父级关闭读取端,然后写入剩余的管道 fd。卡布拉姆。管道。

于 2013-04-21T21:04:22.380 回答
1

您的读取循环应在关闭套接字之前计算读取的字节数。否则过早终止。

管道不是数据包传输,单次读/写实际上是一系列操作。所以当你在写一个数组时,假设它会是一个整体是错误的。

于 2013-04-21T22:58:58.643 回答