14

我正在运行程序

#include<stdio.h>
#include <unistd.h>
main()
{
    pid_t pid, ppid;
    printf("Hello World1\n");
    pid=fork();
    if(pid==0)
    {
        printf("I am the child\n");
        printf("The PID of child is %d\n",getpid());
        printf("The PID of parent of child is %d\n",getppid());
    }
    else
    {
        printf("I am the parent\n");
        printf("The PID of parent is %d\n",getpid());
        printf("The PID of parent of parent is %d\n",getppid());        
    }
}

我得到的输出是。

$ ./a.out 
Hello World1
I am the parent
The PID of parent is 3071
The PID of parent of parent is 2456
I am the child
The PID of child is 3072
The PID of parent of child is 1

我无法理解这条线

孩子的父母的PID是1

应该是3071吧?

4

2 回答 2

19

因为父进程在子进程请求其父进程的 pid 时完成。

当一个进程完成时,它的所有子进程都被重新分配为 init 进程的子进程,pid 为 1。

尝试wait()在父代码中使用以等待子代码执行。然后它应该按您的预期工作。

于 2013-04-18T08:45:02.010 回答
-1

pid 1 用于初始化进程,看起来父进程在子进程打印之前完成。

如果您像这样编辑 else 部分:-

else
    {
        printf("I am the parent\n");
        printf("The PID of parent is %d\n",getpid());
        printf("The PID of parent of parent is %d\n",getppid());   
        while(1);
    }

您应该看到正确的输出。

于 2016-07-21T03:16:56.363 回答