首页 > 系统服务 > 详细

【转】Linux杀死fork产生的子进程的僵尸进程defunct

时间:2015-10-29 19:59:03      阅读:347      评论:0      收藏:0      [点我收藏+]

僵尸进程 就是 已经结束,但是还没有清理出去的.用kill -9 $PID 也无法杀死.

所以程序中应该避免出现僵尸进程.

用fork之后,父进程如果没有wait /waitpid 等待子进程的话,子进程完毕后,就成了僵尸进程.

但是父进程如果等待wait/waitpid的话,就没法干别的事情了...尤其在多个子进程的情况下.所以 中断 信号量 是一个好办法:

技术分享
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>
#include <sys/types.h>

void sig_child(){
pid_t pid;
int status;
while((pid = waitpid(-1, &status, WNOHANG)) > 0) {}
//Key !!!!!!!! wait or waitpid
return;
}
void nodefunct_sig(){
signal(SIGCHLD,sig_child);//prevent defunct

int child=0;
pid_t status=0;
int i=0;
while(1){
if(child=fork()==0){
childf();
printf("child(%d):I will be exit...pgid=%d\n",getpid(),getpgid(getpid()));//getpgrp()
abort();
char cmd[1024]="";
sprintf(cmd,"kill -9 %d",getpid());
system(cmd);
exit(5);
}else{
printf("Parent(%d):Main process...\n",getpid());
//kill(child,SIGABRT);
system("ps -A|grep a.out");

sleep(3);
}
printf("Parent: waitting child...pgid=%d\n\n",getpgid(getpid()));
//waitpid(child,&status,
}
}
void main(){
nodefunct_sig();
}
技术分享

 


参考自:http://topic.csdn.net/t/20020424/21/673887.html

【转】Linux杀死fork产生的子进程的僵尸进程defunct

原文:http://www.cnblogs.com/caiguoqing/p/4921582.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!