int main(int argc, char ** argv) {
int count = 2;
int pid, status;
int fd[count][2];
int i;
for (i = 0; i < count; i++) {
if (pipe(fd[i]) != 0) {
perror("pipe");
exit(1);
}
pid = fork();
if (pid < 0) {
perror("fork");
exit(1);
} else if (pid == 0) {
if (close(fd[i][1]) != 0) {
perror("close");
exit(1);
}
int j;
for (j = 0; j < i; j++ ) {
close(fd[j][1]);
}
char w[MAXWORD];
int result;
result = read(fd[i][0], w, MAXWORD);
w[result-1] = '\0';
printf("child %s\n" w);
if (result == -1) {
perror("read");
exit(1);
}
exit(0);
} else {
if (close(fd[i][0]) != 0) {
perror("close");
exit(1);
}
}
}
while (1) {
char word[MAXWORD]; int c;
c = read(STDIN_FILENO, word, MAXWORD);
if (c == 0) {
break;
}
word[c-1] = '\0';
for (i = 0; i < count; i++ ) {
write(fd[i][1], word, strlen(word)+1);
}
for (i = 0; i < count; i++ ) {
if (close(fd[i][1]) != 0) {
perror("close");
exit(1);
}
}
for (i = 0; i < count; i++) {
wait(&status);
}
}
return 0;
}
我的代码循环读取用户输入的单词,直到点击 control+d。该词被发送到两个子进程的管道。他们都打印了这个词。如果我取出 while (1) 语句,那么它工作正常。问题是当我保持 while 1 循环时第二次输入单词时出现此错误:
$ query
hello
child hello
child hello
hello
close: Bad file descriptor
请我真的需要帮助,因为我真的不知道为什么会这样。谢谢你。