日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

__thread 和 __typeof__关键字

發布時間:2023/12/10 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 __thread 和 __typeof__关键字 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
__thread:在多線程變成中,使用于global變量,使每個線程都私有一份。 static __thread int count; void *function1(void *argc) { printf("porgran pid:%u, the function1 pthread id is %lu, count:%d\n",getpid(), pthread_self(), count); count = 10; printf("porgran pid:%u, last the function1 pthread id is %lu, count:%d\n",getpid(), pthread_self(), count);
return 0; } void *function2(void *argc) { printf("porgran pid:%u, the function2 pthread id is %lu, count:%d\n", getpid(), pthread_self(), count); sleep(2); count = 100; printf("porgran pid:%u, last the function2 pthread id is %lu, count:%d\n", getpid(), pthread_self(), count);
return 0; }
int main() { pthread_t ?thread_id[2]; int ret; pthread_t mian_thread_id; mian_thread_id = pthread_self(); count = 2; printf("porgran pid:%u, mian_thread_id:%lu, count:%d\n", getpid(), mian_thread_id, count);
ret = pthread_create(thread_id, NULL, function1, NULL); assert(ret == 0);
ret = pthread_create(thread_id + 1, NULL, function2, NULL); assert(ret == 0);
ret = pthread_join(thread_id[0], NULL); assert(ret == 0); ret = pthread_join(thread_id[1], NULL); assert(ret == 0);
count = 1000; printf("porgran pid:%u, last mian_thread_id:%lu, count:%d\n", getpid(), mian_thread_id, count); return 0; }
__typeof__(var) 是gcc對C語言的一個擴展保留字,用于聲明變量類型,var可以是數據類型(int, char*..),也可以是變量表達式。
define DEFINE_MY_TYPE(type, name) __thread __typeof__(type) my_var_##name
DEFINE_MY_TYPE(int, one); //It ? is ? equivalent ? to ?'__thread int ?my_var_'; which is a thread variable. int main() { __typeof__(int *) x; //It ? is ? equivalent ? to ?'int ?*x';
__typeof__(int) a;//It ? is ? equivalent ? to ?'int ?a';
__typeof__(*x) ?y;//It ? is ? equivalent ? to ?'int y';
__typeof__(&a) b;//It ? is ? equivalent ? to ?'int ?b';
__typeof__(__typeof__(int *)[4]) ? z; //It ? is ? equivalent ? to ?'int ?*z[4]'; y = *x; b = &a; z[0] = x; z[1] = &a; return 0; }

總結

以上是生活随笔為你收集整理的__thread 和 __typeof__关键字的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。