C 参考手册

位置:首页 > C 参考手册 >线程支持库 > tss_create

定义于头文件 <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()

引用

  • C11 standard (ISO/IEC 9899:2011):
  • 7.26.6.1 The tss_create function (p: 386)