一.概念
- 一般创建出来的线程默认属性是可结合的,所以每个线程退出时,必须调用pthread_join函数等待,否则会出现类似于僵尸进程的线程。
- 一个可分离线程不需要被等待的,它的存储器的资源在它终止时,由系统自动释放。
- 如果线程被自己分离或者被主线程分离,则不需要使用pthread_join,一旦使用则会出错。
- 在子线程中加入代码pthread_detach(pthread_self());
- 在父线程中调用:pthread_detach(thread_id);(非阻塞,可立即返回)
二.代码实现进程分离
在父线程中分离新线程
#include<stdio.h>
#include<pthread.h>
#include<string.h>
#include<unistd.h>
#include<sys/types.h>
void* start_routine(void*arg)
{
int count=5;
while(count)
{
pthread_t tid=pthread_self();
pid_t pid=getpid();
printf("I am a new pthread:tid:%lu pid:%d\n",tid,pid);
count--;
sleep(1);
// pthread_exit((void*)(123));
// pthread_detach(tid);
}
}
int main()
{
pthread_t id;
void* val=NULL;
if(pthread_create(&id,NULL,*start_routine, NULL)!=0)
{
printf("%d:%s\n",id,strerror(id));
}
pthread_detach(id);
pthread_t tid=pthread_self();
pid_t pid=getpid();
int ret=pthread_join(id,&val);
printf("I am a mian pthread:tid:%lu pid:%d\n ",tid,pid);
printf("new pthread was died.main pthread will die:%d\n",ret);
printf("%s\n",strerror(ret));
return 0;
}
结果图: