Linux线程创建及资源回收

2022/7/23 5:24:14

本文主要是介绍Linux线程创建及资源回收,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

创建一个线程并等待线程结束并回收资源

示例:create.c

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>

static void rountine(void *str) //钩子函数
{
puts(str);
}

static void *func(void *p)  //线程调用函数
{
  puts("the thread is running");

  pthread_cleanup_push(rountine,"rounine running");  //线程压栈钩子函数
  pthread_cleanup_pop(1);  //线程退出时钩子函数出栈   1、执行钩子函数   0、不执行

  pthread_exit(NULL);  //线程退出函数
}

int main()
{
  pthread_t tid;
  int err;

  puts("Begin");

  err = pthread_create(&tid,NULL,func,NULL);  //创建线程无参数、保持默认属性
  if(err)
  {
    fprintf(stderr,"pthread_create():%s\n",strerror(err));
    exit(1);
  }

  puts("End");
  pthread_join(tid,NULL);  //等待线程结束收尸
  exit(0);
}

编译文件:Makefile

CFLAGS +=-pthread
LDFLAGS +=-pthread

 



这篇关于Linux线程创建及资源回收的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程