为什么父进程首先从LINUX中的管道读取

时间:2016-11-23 06:37:08

标签: c linux

我运行了这段代码,发现父进程首先读取子进程写入。我想知道为什么会这样吗?
另外我也想知道如何在这个程序中使用两个管道。我只想要这个概念,任何代码都会受到赞赏。谢谢

    #include <stdio.h>
    #include <unistd.h>
    #include <sys/types.h>

    main()
    {
            int     fd[2];
            pid_t   childpid;

            pipe(fd);

            if((childpid = fork()) == -1)
            {
                    perror("fork");

            }

            if(childpid == 0)
            {
                    /* Child process closes up input side of pipe */
                    close(fd[0]);
        printf("\nChild writes\n\n");
            }
            else
            {
                    /* Parent process closes up output side of pipe */
                    close(fd[1]);
        printf("parent reads\n\n");
            }
            return 0;
    }

1 个答案:

答案 0 :(得分:2)

为您查询: -

父进程首先读取子进程写入。我想知道为什么会发生这种情况

在fork()之后,两个进程都独立工作,因此首先调度哪个进程,它取决于调度程序。

如何在此计划中使用两个管道?

打开两个管道,一个用于父母,一个用于子进程。因为管道是单向的。

int fd[2];
int fd1[2];

parents will write on fd[1]  child will read from fd[0]
child will write on fd1[1] parents will read from fd1[0]