tss_get
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <threads.h> 中定义
|
||
void *tss_get( tss_t tss_id ); |
(C11 起) | |
tss_id
识别为当前线程的返回值保存在特定于线程的存储原文:
Returns the value held in thread-specific storage for the current thread identified by
tss_id
[编辑] 参数
tss_id | - | 标识的特定于线程的存储访问
原文: identifies the thread-specific storage to access |
[编辑] 返回值
成功的价值,NULL失灵
原文:
The value on success, NULL on failure.
[编辑] 另请参阅
(C11) |
写线程专有存储 (函数) |