tss_create
来自cppreference.com
在标头 <threads.h> 定义
|
||
int tss_create( tss_t* tss_key, tss_dtor_t destructor ); |
(C11 起) | |
创建新的线程特定存储键,并将它存储于 tss_key
所指向的对象。尽管不同线程可能使用相同的键值,仍按每个线程为准维护由 tss_set 绑定到该键的值,并且在调用方线程的生命中保持存在。
所有既存线程中,新建的键关联的值为 NULL,而在创建线程时,将所有 TSS 键关联的值初始化为 NULL。
若 destructor
不是空指针,则亦关联在 thrd_exit(但不是 tss_delete 且不是在以 exit 终止程序时)释放存储时调用的析构器。
在线程特定存储的析构器内调用 tss_create
导致未定义行为。
参数
tss_key | - | 指向要存储新的线程特定存储键的内存位置的指针 |
destructor | - | 指向要在线程退出时调用的函数的指针 |
注意
此函数的 POSIX 等价版本是 pthread_key_create。
返回值
若成功则为 thrd_success,否则为 thrd_error。
示例
本节未完成 原因:改进,最好为启发寻找 POSIX 示例 |
int thread_func(void *arg) { tss_t key; if (thrd_success == tss_create(&key, free)) { tss_set(key, malloc(4)); // 在 TSS 上存储指针 // ... } } // 对 TSS 上存储的指针调用 free()
引用
- C17 标准(ISO/IEC 9899:2018):
- 7.26.6.1 The tss_create function (第 281-282 页)
- C11 标准(ISO/IEC 9899:2011):
- 7.26.6.1 The tss_create function (第 386 页)