2

学习使用 fork() 命令以及如何在父级和子级之间传输数据。我目前正在尝试编写一个简单的程序来测试 fork 和 pipe 函数是如何工作的。我的问题似乎是等待功能的正确使用/放置。我希望父母等待其两个孩子完成处理。这是我到目前为止的代码:

int main(void)
{
    int n, fd1[2], fd2[2];
    pid_t pid;
    char line[100];

    if (pipe(fd1) < 0 || pipe(fd2) < 0)
    {
        printf("Pipe error\n");
        return 1;
    }

    // create the first child
    pid = fork();

    if (pid < 0)
        printf("Fork Error\n");
    else if (pid == 0)  // child segment
    {
        close(fd1[1]);  // close write end
        read(fd1[0], line, 17); // read from pipe
        printf("Child reads the message: %s", line);

        return 0;
    }
    else    // parent segment
    {
        close(fd1[0]);  // close read end
        write(fd1[1], "\nHello 1st World\n", 17);   // write to pipe

        // fork a second child
        pid = fork();

        if (pid < 0 )
            printf("Fork Error\n");
        else if (pid == 0) // child gets return value 0 and executes this block
            // this code is processed by the child process only
        {
            close(fd2[1]);  // close write end
            read(fd2[0], line, 17); // read from pipe
            printf("\nChild reads the message: %s", line);
        }
        else
        {
            close(fd2[0]);  // close read end
            write(fd2[1], "\nHello 2nd World\n", 17);   // write to pipe

            if (wait(0) != pid)
                printf("Wait error\n");
        }

        if (wait(0) != pid)
            printf("Wait error\n");

    }

    // code executed by both parent and child
    return 0;
}   // end main

目前,我的输出看起来类似于:

./fork2 
Child reads the message:  Hello 1st World 
Wait error

Child reads the message:  Hello 2nd World 
Wait error

让父母等待的合适地点在哪里?

谢谢,

托梅克

4

2 回答 2

4

这似乎大部分都可以(请注意,我没有运行它)。您的逻辑错误在于假设孩子将以某种特定顺序结束;不要检查wait(0)特定 pid 的结果,除非您确定您知道要返回哪个 pid!

编辑:

我运行了你的程序;您确实有至少一个错误,即您的第二个子进程调用wait(),您可能不想这样做。我建议将你的一些代码分解成函数,这样你就可以更清楚地看到你正在执行的操作的顺序,而不会造成混乱。

于 2010-02-16T05:54:07.503 回答
0

我认为最好使用这样的东西,以等待所有的孩子。

int stat;
while (wait(&stat) > 0)
   {}   
于 2010-02-19T18:16:34.460 回答