我想尝试与子进程和父进程进行管道通信。父进程写入管道和子进程读取此,但我的程序得到错误“写:断管”。我该如何更改此代码? Thnks。
#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;
}
答案 0 :(得分:2)
错误“写:断管”。如何更改此代码?
在写入之前不要破坏管道。在第一次通过do / while循环时,父级关闭读取结束,然后写入剩余的管道fd。 Kablam。 EPIPE。
答案 1 :(得分:1)
您的读取循环应计算在关闭套接字之前读取的字节数。否则它会过早终止。
管道不是数据包传输,单个读/写实际上是一系列操作。所以当你编写一个数组时,假设它将是一个整体是错误的。