gcc 中__thread 关键字的示例代码

__thread 关键字的解释:
 
Thread Local Storage 
线程局部存储(tls)是一种机制,通过这一机制分配的变量,每个当前线程有一个该变量的实例.
gcc用于实现tls的运行时模型最初来自于IA-64处理器的ABI,但以后被用到其它处理器上。
它需要链接器(ld),动态连接器(ld.so)和系统库(libc.so,libpthread.so)的全力支持.因此它不是到处可用的。
注意:__thread 前面是两个_别闹错哦;
 
示例代码:
   #include<iostream>
#include<pthread.h>
#include <unistd.h>
#define D "-----------------------------------------"
using namespace std; static __thread int a=; void *thread1(void *arg);
void *thread2(void *arg); int main()
{
pthread_t pid,pid1; pthread_create(&pid,NULL,thread1,NULL);
pthread_create(&pid1,NULL,thread2,NULL); pthread_join(pid,NULL);
pthread_join(pid,NULL); cout<<"main_a="<<a<<"\t"<<"addr_a="<<&a<<endl; } void *thread1(void *arg)
{
cout<<"I am thread1"<<endl;
cout<<"a="<<a<<"\t"<<&a<<endl;
sleep();
a=;
cout<<"thread1->a="<<a<<"\t"<<"add_a="<<&a<<endl;
cout<<D<<endl;
return NULL;
}
void *thread2(void *arg)
{ cout<<"I am thread2"<<endl; cout<<"a="<<a<<"\t"<<&a<<endl;
a=;
cout<<"thread2->a="<<a<<"\t"<<"add_a="<<&a<<endl;
cout<<D<<endl;
return NULL;
}

执行结果:

zn@zn:~$ ./a.out
I am thread2
a= 0x7f7912b4a6fc
thread2->a= add_a=0x7f7912b4a6fc
-----------------------------------------
I am thread1
a= 0x7f791334b6fc
thread1->a= add_a=0x7f791334b6fc
-----------------------------------------
main_a= addr_a=0x7f79144b473c

分析:

  该程序为了测试这个关键字的作用;

  介绍一下程序,

        首先在一开始定义一个全局变量a=12,其次声明连个线程的回调函数这两个函数作用,

        用于先打印一下a的值然后再改变在打印a的值,至于为什么这样做,是想验证一下他是不是写时拷贝,

        然后主程序就是开辟两个线程并等待其完成最后再打印一下a的值及地址来确定主线程是否有影响;

  最终分析:

      通过结果我们可以看到这个关键字作用是,只要其他线程用它他会直接在自己的线程栈上创建该对象并保留其原有的值;

        不会干扰其他线程中的该值;

上一篇:P2075 [NOIP2012T5]借教室 区间更新+二分查找


下一篇:Android使用listView,BaseAdapter实现列表页