Википедия говорит: "Ребенок-процесс, который заканчивается, но его никогда не ждет, его родитель становится процессом зомби". Я запустил эту программу:
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
int main()
{
pid_t pid, ppid;
printf("Hello World1\n");
pid=fork();
if(pid==0)
{
exit(0);
}
else
{
while(1)
{
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());
sleep(2);
}
}
}
Это создает процесс зомби, но я не могу понять, почему здесь создается зомби-процесс?
Выход программы
Hello World1
I am the parent
The PID of parent is 3267
The PID of parent of parent is 2456
I am the parent
The PID of parent is 3267
The PID of parent of parent is 2456
I am the parent
....
.....
Но почему в этом случае "дочерний процесс завершается, но его не ждет его родитель"?