tss_create
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <threads.h> 中定义
|
||
int tss_create( tss_t* tss_id, tss_dtor_t destructor ); |
(C11 起) | |
创建新的线程特定的存储和可选存储析构函数时调用的存储被删除。指向的对象
tss_id
设置新的特定于线程的存储的标识符。原文:
Creates new thread-specific storage and optionally stores destructor which is called when the storage is deleted. The object pointed to by
tss_id
is set to the identifier of the new thread-specific storage.[编辑] 参数
tss_id | - | 指针指向的内存位置的特定于线程的存储来存储标识符
原文: pointer to memory location to store the identifier of the thread-specific storage |
destructor | - | 指针指向一个函数来调用时,存储被删除
原文: pointer to a function to call when the storage is deleted |