#include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <pthread.h> #if 0 //預定義 char * str_accumulate(char *s) { static char accu[1024]={0}; strcat(accu,s); return accu; } #endif static pthread_key_t str_key; //頂一個鍵值 static pthread_once_t str_alloc_key_once = PTHREAD_ONCE_INIT; //用于解決鍵沖突 static void str_alloc_key(); //按鍵分配函數(shù) static void str_alloc_destroy_accu(void *accu); //撤銷按鍵分配函數(shù) //處理函數(shù) char * str_accumulate(const char *s) { char *accu; pthread_once(&str_alloc_key_once,str_alloc_key); //解決按鍵沖突 accu = (char *)pthread_getspecific(str_key); //獲取線程的私有數(shù)據(jù)地址 if(accu == NULL) { accu = malloc(1024); //分配1024的空間 if(accu == NULL) //如果accu為NULL則直接返回NULL { return NULL; } accu[0] = 0; pthread_setspecific(str_key,(void *)accu); //將accu存放的數(shù)據(jù)作為鍵值關聯(lián) printf("Thread %lx : allocating buffer at %p\n",pthread_self(),accu); //打印輸出 } strcat (accu,s); //將accu和s字符串連接到一起 return accu; } //這是一個鍵值分派函數(shù) static void str_alloc_key() { pthread_key_create(&str_key,str_alloc_destroy_accu); //創(chuàng)建鍵值 printf("Thread %lx : allocated key %d\n",pthread_self(), str_key); } //這是撤銷鍵值的函數(shù) static void str_alloc_destroy_accu(void *accu) { printf("Thread %lx : freeing buffer at %p\n",pthread_self(),accu); free(accu); //釋放空間 } //線程處理函數(shù) void *threaddeal(void *arg) { //該函數(shù)的主要工作是將arg的字符串和“Result of和thread連接到一起” char *str; str = str_accumulate("Result of "); str = str_accumulate((char *)arg); str = str_accumulate(" thread"); printf("Thread %lx: \"%s\" \n",pthread_self(),str); return NULL; } //主函數(shù) int main(int argc, char *argv[]) { char *str; pthread_t th2,th3; str = str_accumulate("Result of "); pthread_create(&th2,NULL,threaddeal,(void *)"first"); pthread_create(&th3,NULL,threaddeal,(void *)"second"); //建立兩個線程 str = str_accumulate("initial thread"); printf("Thread %lx :\"%s\"\n",pthread_self(),str); pthread_join(th2,NULL); pthread_join(th3,NULL); //阻塞線程1和線程2 return 0; }
本文標題:[Linux線程]使用線程的私有數(shù)據(jù)
瀏覽地址:http://jinyejixie.com/article16/pdsdgg.html
成都網站建設公司_創(chuàng)新互聯(lián),為您提供網站維護、移動網站建設、品牌網站設計、企業(yè)網站制作、App開發(fā)、網站設計公司
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)