码迷,mamicode.com
首页 > 系统相关 > 详细

销毁僵尸进程

时间:2021-02-09 12:31:34      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:wait   ==   info   char   printf   send   main   图片   else   

//销毁僵尸进程2
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>

int main(int argc, char *argv[])
{
int status;
pid_t pid=fork();

if (pid==0)
{
sleep(15);
return 24;
}

else
{
while(!waitpid(-1,&status,WNOHANG))
{
sleep(3);
puts("sleep 3sec.");
}

if(WIFEXITED(status))
{
printf("child send %d\n",WEXITSTATUS(status));
}
return 0;
}
}

技术图片

 

销毁僵尸进程

标签:wait   ==   info   char   printf   send   main   图片   else   

原文地址:https://www.cnblogs.com/shiheyuanfang/p/14391623.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!