POSIX线程专有数据的空间释放问题,pthread_key_create……(

 
先记下来,以后有机会请教高手
最近学习通过pthread_key_create创建的线程专有数据时发现如果不对线程使用pthread_join,则不会调用pthread_key_create所指定的资源释放函数。而并没有像书上所说的在线程pthread_exit()后就会调用释放函数。这是为什么?究竟什么情况下会调用?
我使用的测试程序:

#include <pthread.h > 
#include <stdio.h > 
#include <unistd.h > 

using namespace std; 

pthread_key_t key; 
void echomsg(void* p) 
{ 
int t=*(int*)p; 
printf( "destructor excuted in thread %d, param=%d\n ",pthread_self(),t); 
} 

void* child1(void* arg) 
{ 
int*ptid= new int; 
*ptid=pthread_self(); 
printf( "thread %d enter\n ",*ptid); 
pthread_setspecific(key,(void*)ptid); 
sleep(2); 
printf( "thread %d returns %d\n ",*ptid,*((int*)pthread_getspecific(key))); 
sleep(5); 
pthread_exit(NULL); 
return NULL; 
} 

void* child2(void* arg) 
{ 
int*ptid= new int; 
*ptid=pthread_self(); 
printf( "thread %d enter\n ",*ptid); 
pthread_setspecific(key,(void*)ptid); 
sleep(1); 
printf( "thread %d returns %d\n ",*ptid,*((int*)pthread_getspecific(key))); 
sleep(5); 
pthread_exit(NULL); 
return NULL; 
} 

int main() 
{ 
pthread_t tid1,tid2; 
printf( "hello\n "); 
pthread_key_create(&key,echomsg); 
pthread_create(&tid1,NULL,child1,NULL); 
pthread_create(&tid2,NULL,child2,NULL); 
//pthread_join(tid1,NULL); 
pthread_join(tid2,NULL); 
sleep(3); 
pthread_key_delete(key); 
printf( "main thread %d exit\n ",pthread_self()); 

return 0; 
} 


这是程序输出
----------------------------------------------
hello
thread 1083395264 enter
thread 1091783744 enter
thread 1091783744 returns 1091783744
thread 1083395264 returns 1083395264
destructor excuted in thread 1075005312, param=1091783744
main thread 1075005312 exit

----------------------------------------------
 

         这是在网上看到的一篇文章,个人认为并不是pthread_join接受线程时才调用每个线程的key的echomsg函数。而是由于pthread_join阻塞等待特定的线程结束,以至于被等待的线程能够全部处理完(当然包括每个线程key的特定清理函数echomsg),所以当pthread_join尤其用在main线程中时,能够确保特定的子线程能处理完。

       在以上程序中,稍加修改:child2()函数中的sleep睡眠时间都改为sleep(1),并且把主函数的pthread_join(tid2,NULL);也注释掉,重新编译执行也会得到上面类似的结果。

       同时也发现child1的线程也退出了,并没有sleep(5)足够的时间,我认为是child2线程结束时要发送信号,而sleep是可被信号中断的(这个陈述稍有欠当,姑且是那个意思),所以child1的线程在child2结束后也结束了。但是没来及执行child1的echomsg,main线程就结束了,随之整个进程也结束了

个人认为上面的程序有点隐形的bug,自己改进的代码如下:

 

#include    <pthread.h>  
#include    <stdio.h>  
#include    <unistd.h>  
#include 	<stdlib.h> //atexit

using  namespace  std;  

pthread_key_t  key;  
pthread_once_t thread_once = PTHREAD_ONCE_INIT;

void echomsg(void *);
void once_run(void)
{
	printf("pthread_key_t init in the once_run\n  ");
	pthread_key_create(&key,echomsg);

}
void  echomsg(void*  p)  
{  
	int  t=*(int*)p;  
	printf(  "destructor  excuted  in  thread  %d,  param=%d\n  ",pthread_self(),t);  
	delete (int *)p;
}  

void*  child1(void*  arg)  
{  
	int*ptid=  new  int;  

	pthread_once(&thread_once, once_run);//测试pthread_once是否还会在此执行不,因为在main线程已经执行了.
	*ptid=pthread_self();  
	printf(  "thread1  %d  enter\n  ",*ptid);  
	pthread_setspecific(key,(void*)ptid);  
	sleep(2);  
	printf(  "thread1  %d  returns  %d\n  ",*ptid,*((int*)pthread_getspecific(key)));  
	sleep(5);  
	pthread_exit(NULL);  
	return  NULL;  
}  

void*  child2(void*  arg)  
{  
	int*ptid=  new  int;  
	*ptid=pthread_self();  
	printf(  "thread2  %d  enter\n  ",*ptid);  
	pthread_setspecific(key,(void*)ptid);  
	sleep(1);  
	printf(  "thread2  %d  returns  %d\n  ",*ptid,*((int*)pthread_getspecific(key)));  
	sleep(1);  
	pthread_exit(NULL);  
	return  NULL;  
}  

void main_exit()
{
	pthread_key_delete(key);

}
int  main()  
{  
	pthread_t  tid1,tid2;  
	printf(  "hello\n  ");  
	atexit(main_exit);//为了防止sleep(4)放到pthread_key_delete(key)后面就会出现段错误了。但是个人也不很提倡用atexit这个函数。
	pthread_once(&thread_once, once_run);
	//pthread_key_create(&key,echomsg);  //保证一次性运行把其放到了pthread_once了
	pthread_create(&tid1,NULL,child1,NULL);  
	pthread_create(&tid2,NULL,child2,NULL);  
	//pthread_join(tid1,NULL);  
	//pthread_join(tid2,NULL);  
	sleep(3);  
	//pthread_key_delete(key);  
	printf(  "main  thread  %d  exit\n  ",pthread_self());  

	return  0;  
} 


程序输出:

hello
  pthread_key_t init in the once_run
  thread1  -1208583280  enter
  thread2  -1219073136  enter
  thread2  -1219073136  returns  -1219073136
  thread1  -1208583280  returns  -1208583280
  destructor  excuted  in  thread  -1219073136,  param=-1219073136
  main  thread  -1208580400  exit

 

-到此结束-睡觉

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值