概述
pthread_join()函数
- 头文件:#include<pthread.h>
- 原型:int pthread_join(pthread_t thread,void **retval);
- retval:获得线程调用pthread_exit的信息
- 返回值:成功返回0;失败返回错误号
- 作用:阻塞等待线程并且回收线程资源(PCB)
回收单个线程:
1 #include<stdio.h>
2 #include<pthread.h>
3 #include<unistd.h>
4 #include<string.h>
5 void *th_funct(void *arg)
6 {
7 int *i;
8 int *retval2=arg;//赋予retval指针值
9 i=(int *)arg;
10 printf("my_pthread_num=%lu and num=%dn",pthread_self(),*i);
11 sleep(1);
12 pthread_exit((void *)retval2);//将指针转化为void指针类型,退出并保留信息
13 }
14 void main(void)
15 {
16 pthread_t tid;
17 int ret;
18 int *retval1;
19 int *i;
20 int log=1;
21 i=&log;
22 pthread_create(&tid,NULL,th_funct,(void *)i);
23 ret=pthread_join(tid,(void **)&retval1);//回收线程资源且将eixt的信息写道retval地址上
24 if(ret!=0){
25 printf("join error:%sn",strerror(ret));
26 }
27 printf("%dn",*retval1);//打印退出时的状态信息
28 }
- join中接收exit(void ×)参数,用(void ××)
- 对比记忆:进程中wait(int ×status)接收子进程退出int类型的退出值;线程中(void ××)接收子线程(void ×)退出值。
- retval可直接NULL,不取退出值
回收多个线程:
1 #include<stdio.h>
2 #include<pthread.h>
3 #include<unistd.h>
4 #include<string.h>
5 void *th_funct(void *arg)
6 {
7 int i;
8 i=*((int *)arg);
9 int ret[5];
10 ret[i]=i;
11 printf("my_pthread_num=%lu and num=%dn",pthread_self(),i);
12 pthread_exit((void *)ret[i]);
13 }
14 void main(void)
15 {
16 pthread_t tid[5];
17 int ret;int *retval[5];
18 int *i;
19 int log;
20 i=&log;
21 for(log=0;log<5;log++){
22 pthread_create(&tid[log],NULL,th_funct,(void *)i);
23 sleep(1);
24 }
25 for(log=0;log<5;log++){
26 pthread_join(tid[log],(void **)&retval[log]);
27 printf("join error:%dn",(int)retval[log]);
28 }
29 }
最后
以上就是淡然白云为你收集整理的linux系统编程 线程回收的全部内容,希望文章能够帮你解决linux系统编程 线程回收所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复