Chinaunix首页 | 论坛 | 博客
  • 博客访问: 216864
  • 博文数量: 32
  • 博客积分: 410
  • 博客等级: 一等列兵
  • 技术积分: 396
  • 用 户 组: 普通用户
  • 注册时间: 2012-04-03 16:58
文章分类

全部博文(32)

文章存档

2013年(17)

2012年(15)

我的朋友

分类: LINUX

2012-05-14 19:23:11

在单线程程序中,我们经常要用到"全局变量"以实现多个函数间共享数据。在多线程环境下,由于数据空间是共享的,因此全局变量也为所有线程所共有。但有时 应用程序设计中有必要提供线程私有的全局变量,仅在某个线程中有效,但却可以跨多个函数访问,比如程序可能需要每个线程维护一个链表,而使用相同的函数操 作,最简单的办法就是使用同名而不同变量地址的线程相关数据结构。这样的数据结构可以由Posix线程库维护,称为线程私有数据(Thread- specific Data,或TSD)

Posix定义了两个API分别用来创建和注销TSD:

int pthread_key_create(pthread_key_t *key, void (*destr_function) (void *))

该函数从TSD池中分配一项,将其值赋给key供以后访问使用。如果destr_function不为空,在线程退出(pthread_exit())时将以key所关联的数据为参数调用destr_function(),以释放分配的缓冲区。

不论哪个线程调用pthread_key_create(),所创建的key都是所有线程可访问的,但各个线程可根据自己的需要往key中填入不同的值,这就相当于提供了一个同名而不同值的全局变量。在LinuxThreads的实现中,TSD池用一个结构数组表示:

static struct pthread_key_struct pthread_keys[PTHREAD_KEYS_MAX] = { { 0, NULL } };
创建一个TSD就相当于将结构数组中的某一项设置为"in_use",并将其索引返回给*key,然后设置destructor函数为destr_function。

注销一个TSD采用如下API

int pthread_key_delete(pthread_key_t key)
这个函数并不检查当前是否有线程正使用该TSD,也不会调用清理函数(destr_function),而只是将TSD释放以供下一次调用 pthread_key_create()使用。在LinuxThreads中,它还会将与之相关的线程数据项设为NULL(见"访问")。

TSD的读写都通过专门的Posix Thread函数进行,其API定义如下:

int pthread_setspecific(pthread_key_t key, const void *pointer) void * pthread_getspecific(pthread_key_t key)

写入(pthread_setspecific())时,将pointer的值(不是所指的内容)与key相关联,而相应的读出函数则将与key相关联的数据读出来。数据类型都设为void *,因此可以指向任何类型的数据。

在LinuxThreads中,使用了一个位于线程描述结构(_pthread_descr_struct)中的二维void *指针数组来存放与key关联的数据,数组大小由以下几个宏来说明:

#define PTHREAD_KEY_2NDLEVEL_SIZE 32 #define PTHREAD_KEY_1STLEVEL_SIZE \ ((PTHREAD_KEYS_MAX + PTHREAD_KEY_2NDLEVEL_SIZE - 1) / PTHREAD_KEY_2NDLEVEL_SIZE) 其中在/usr/include/bits/local_lim.h中定义了PTHREAD_KEYS_MAX为1024, 因此一维数组大小为32。而具体存放的位置由key值经过以下计算得到: idx1st = key / PTHREAD_KEY_2NDLEVEL_SIZE idx2nd = key % PTHREAD_KEY_2NDLEVEL_SIZE

也就是说,数据存放与一个32×32的稀疏矩阵中。同样,访问的时候也由key值经过类似计算得到数据所在位置索引,再取出其中内容返回。

以下这个例子没有什么实际意义,只是说明如何使用,以及能够使用这一机制达到存储线程私有数据的目的。


  1. #include <stdio.h>
  2. #include <pthread.h>
  3. pthread_key_t key;
  4. void echomsg(int t)
  5. {
  6.         printf("destructor excuted in thread %d,param=%d\n",pthread_self(),t);
  7. }
  8. void * child1(void *arg)
  9. {
  10.         int tid=pthread_self();
  11.         printf("thread %d enter\n",tid);
  12.         pthread_setspecific(key,(void *)tid);
  13.         sleep(2);
  14.         printf("thread %d returns %d\n",tid,pthread_getspecific(key));
  15.         sleep(5);
  16. }
  17. void * child2(void *arg)
  18. {
  19.         int tid=pthread_self();
  20.         printf("thread %d enter\n",tid);
  21.         pthread_setspecific(key,(void *)tid);
  22.         sleep(1);
  23.         printf("thread %d returns %d\n",tid,pthread_getspecific(key));
  24.         sleep(5);
  25. }
  26. int main(void)
  27. {
  28.         int tid1,tid2;
  29.         printf("hello\n");
  30.         pthread_key_create(&key,echomsg);
  31.         pthread_create(&tid1,NULL,child1,NULL);
  32.         pthread_create(&tid2,NULL,child2,NULL);
  33.         sleep(10);
  34.         pthread_key_delete(key);
  35.         printf("main thread exit\n");
  36.         return 0;
  37. }

给例程创建两个线程分别设置同一个线程私有数据为自己的线程ID,为了检验其私有性,程序错开了两个线程私有数据的写入和读出的时间,从程序运行结果可以看出,两个线程对TSD的修改互不干扰。同时,当线程退出时,清理函数会自动执行,参数为tid。


为加深理解:

  1.     #include <malloc.h>
  2.     #include <pthread.h>
  3.     #include <stdio.h>
  4.     #include <string.h>
  5.     #include <stdlib.h>
  6.     pthread_key_t thread_log_key;
  7.     /*通用函数里可以利用 pthread_getspecific() 处理线程各自的私有数据*/
  8.     void write_to_thread_log (const char *message)
  9.     {
  10.         FILE *thread_log = (FILE *)pthread_getspecific (thread_log_key);
  11.         fprintf (thread_log, "%s\n", message);
  12.     }
  13.     void close_thread_log (void *thread_log)
  14.     {
  15.         fclose ((FILE *)thread_log);
  16.     }
  17.     void *thread_function (void *args)
  18.     {
  19.         char thread_log_filename[128];
  20.         char thread_start_message[128];
  21.         FILE *thread_log;
  22.         sprintf (thread_log_filename, "thread%u.log", pthread_self());
  23.         thread_log = fopen (thread_log_filename, "w");
  24.         pthread_setspecific (thread_log_key, thread_log); //每个线程都设置自己的私有数据
  25.         sprintf (thread_start_message, "thread %u starting", pthread_self());
  26.         write_to_thread_log (thread_start_message);
  27.         pthread_exit(NULL);
  28.     }
  29.     int main()
  30.     {
  31.         int i;
  32.         pthread_t threads[5];
  33.             /*创建私有数据键,close_thread_log 在线程退出时对 key 关联数据进行清理*/
  34.         pthread_key_create (&thread_log_key, close_thread_log);
  35.        
  36.         for (i = 0; i < 5; i++)
  37.             pthread_create (&threads[i], NULL, thread_function, NULL); //创建多线程
  38.        
  39.         for (i = 0; i < 5; i++)
  40.             pthread_join (threads[i], NULL); //等待各个线程结束
  41.         return (0);
  42.     }



运行与输出
./pthread_key2
ls *log
thread3040865136.log  thread3049257840.log  thread3059047280.log  thread3067439984.log  thread3075832688.log
cat thread3040865136.log
thread 3040865136 starting
http://www.ibm.com/developerworks/cn/linux/thread/posix_threadapi/part2/
阅读(1170) | 评论(0) | 转发(0) |
0

上一篇:mips地址空间

下一篇:上下文切换分析[mips]

给主人留下些什么吧!~~