linux笔记之有关分离线程

本文介绍了Linux线程的概念,特别是可分离线程的特点,它们在结束时由系统自动释放资源,避免了类似僵尸进程的问题。通过示例代码展示了如何在子线程和父线程中实现线程的分离,指出使用pthread_detach函数的重要性及其非阻塞特性。
摘要由CSDN通过智能技术生成

一.概念

  • 一般创建出来的线程默认属性是可结合的,所以每个线程退出时,必须调用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;
}

结果图:
这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值