Chinaunix首页 | 论坛 | 博客
  • 博客访问: 230048
  • 博文数量: 75
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 848
  • 用 户 组: 普通用户
  • 注册时间: 2013-10-08 10:27
文章分类
文章存档

2014年(9)

2013年(66)

我的朋友

分类: LINUX

2013-12-06 16:59:28

sometimes linux thread can not stop, do like this:


[cpp] view plaincopy
#include  
#include  
#include  
int main()  
{  
    pid_t pid;  
    char cmd[50];  
  
    if((pid=fork())==0){  
        printf("child process ---in ---->\n");  
        while(1)  
        {  
            printf("sleep 2s ..\n");  
            sleep(2);  
        }  
        printf("child process ---end ---->\n");  
        exit(0);  
    }else if(pid>0){  
        printf("father process ---in ---->\n");  
        printf("child process pid is %d\n",pid);  
        memset(cmd, 0 ,sizeof(cmd));  
        sprintf(cmd, "kill -9 %d", pid);  
        printf("%s\n",cmd);  
        system(cmd);  
        waitpid(pid,NULL,0);  
        printf("father process ---end ---->\n");  
        exit(0);  
    }  
}  
阅读(1155) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~