4

/bin/catを使用して表示する必要がある子プロセスに、パイプを介して文字列のリストを渡そうとしていexecl()ます。パイプが閉じなかったため、プログラムが待機し続けたことを除いて、以前は動作していました。私が何をしたのかわかりませんが、今ではまったく機能していません。誰かが私のコードを見て、strデータが子プロセスで猫によって表示されていないという私が間違っていることを教えてもらえますか?

int main(int argc, char** argv) {

    char *str[] = {"The", "quick", "brown", "fox", "jumped", "over", "the", "lazy", "dog"};
    int fds[TOTAL_CHILDREN];
    int writeFds;
    int catPID;
    int status;

    FILE * write_to_child;

    //create pipe
    if (pipe(fds) == -1) {
        perror("creating pipe: failed");
        exit(EXIT_FAILURE);
    }
    pipe(fds);
    //create subprocess for cat child

    switch (catPID) {
        case 0: // successful creation of child
            close(fds[1]); //close write side from parents
            close(0); //close stdin
            dup(fds[0]); //connect pipe from execl cat to stdin

            execl("/bin/cat", "cat", (char *) 0);
            perror("exec failed!");
            exit(20);
            break;

        case -1: //failure
            perror("fork failed: cat process");
            exit(EXIT_FAILURE);

        default: //parent process
            close(fds[0]);

            writeFds = fds[1];
            write_to_child = fdopen(fds[1], "w");

            if (write_to_child == NULL) {
                perror("write to pipe failed");
                exit(EXIT_FAILURE);
            }
            break;


    }

    int i;
    for (i = 0; i < 9; i++){
        fprintf(write_to_child, "%s\n", str[i]);
    }

    fclose(write_to_child);
    close(writeFds);

    wait(&status);

    return (EXIT_SUCCESS);
}
4

1 に答える 1

3

おそらく行を追加したいでしょう

catPID = fork();

なぜあなたがpipe(fds)2回持っているのか私にはわかりません

于 2013-05-12T17:31:17.950 に答える