为什么存在僵尸进程?
维基百科说:“一个终止但从未被其父级等待的子进程变成了僵尸进程。” 我运行此程序:
#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 World1I 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
....
.....
但是在这种情况下,为什么“子进程终止但没有被其父进程等待”呢?
回答:
在您的代码中,创建了僵尸exit(0)
(带有以下箭头的注释):
pid=fork(); if (pid==0) {
exit(0); // <--- zombie is created on here
} else {
// some parent code ...
}
为什么?因为你从来没有wait
上过。调用时waitpid(pid)
,它将返回有关进程的事后信息,例如其退出代码。不幸的是,当进程退出时,内核不能仅仅丢弃该进程条目,否则返回代码将丢失。因此,它等待有人wait
在上面等待,并留下该进程条目,即使除了进程表中的条目之外,它实际上并没有占用任何内存-
这就是所谓的 zombie 。
- 。例如,这样做将有助于:
pid=fork(); if (pid==0) {
exit(0);
} else {
waitpid(pid); // <--- this call reaps zombie
// some parent code ...
}
- 获取孙子并在孙子还活着时在孩子中退出。
init
如果其父母(我们的孩子)去世,则将自动收养孙子女;这意味着,如果孙子去世,则将wait
由init
。换句话说,您需要执行以下操作:
pid=fork(); if (pid==0) {
// child
if (fork()==0) {
// grandchild
sleep(1); // sleep a bit to let child die first
exit(0); // grandchild exits, no zombie (adopted by init)
}
exit(0); // child dies first
} else {
waitpid(pid); // still need to wait on child to avoid it zombified
// some parent code ...
}
- 。孩子死后,父母会收到
SIGCHLD
信号,让其对孩子死亡做出反应。您可以waitpid()
在收到该信号时进行调用,也可以安装显式的ignore信号处理程序(使用signal()
或sigaction()
),这将确保子代不会成为僵尸。换句话说,是这样的:
signal(SIGCHLD, SIG_IGN); // <-- ignore child fate, don't let it become zombie pid=fork();
if (pid==0) {
exit(0); // <--- zombie should NOT be created here
} else {
// some parent code ...
}
以上是 为什么存在僵尸进程? 的全部内容, 来源链接: utcz.com/qa/414773.html