【发布时间】:2023-04-08 17:35:02
【问题描述】:
我正在运行程序
#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?
【问题讨论】:
-
您将通过添加适当的
fflush(NULL);(在fork之前)和sleep(1);调用(在if的then 和else 部分,以及就在main结束)。