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

 

原创文章,作者:端木书台,如若转载,请注明出处:https://blog.ytso.com/276212.html

(0)
上一篇 2022年7月22日
下一篇 2022年7月22日

相关推荐

发表回复

登录后才能评论