1

親と子のプロセスがあり、パイプを介して親から子に EOF を書きたいと思っています...これはどのように機能しますか?

ここに私の試みがあります:

---親コード---

if(dup2(parent_pipe[1], STDOUT_FILENO) == -1) { /*stdout gets closed and parent_pipe is duplicated with id of stdout*/
        error("Can't duplicate the write-end of the pipe to stdout!");
}
if(close(parent_pipe[0]) == -1) {
    error("Can't close read-end of the pipe!");
}

char blub[] = "EOF";
if(write(parent_pipe[1], blub, strlen(blub)) == -1) {
error("Failed to write the array");
}

---子コード---

if(dup2(parent_pipe[0], STDIN_FILENO) == -1) { /*stdin gets closed and parent_pipe is duplicated with id of stin*/
    error("Can't duplicate the read-end of the pipe to stdin!");
}
/* close the write-end of the pipe */
if(close(parent_pipe[1]) == -1) {
    error("Can't close write-end of the pipe");
}

while(fgets(readbuffer, ROWLENGTH, stdin) != NULL) {
    printf("Received string: %s", readbuffer, nbytes);
}

子が EOF を待って停止しません。この問題を解決するにはどうすればよいですか? 前もって感謝します

4

1 に答える 1

4

通信を停止したい場合は、親プロセスでパイプを閉じる必要があります。

dup2(...);
...
write to child
...
close(parent_pipe[1]);
于 2012-11-22T23:48:14.703 に答える