tss_set
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <threads.h> 中定义
|
||
int tss_set( tss_t tss_id, void *val ); |
(C11 起) | |
设定值的特定于线程的存储识别
tss_id
为当前线程val
. 原文:
Sets the value of the thread-specific storage identified by
tss_id
for the current thread to val
. [编辑] 参数
tss_id | - | 标识的特定于线程的存储修改
原文: identifies the thread-specific storage to modify |
val | - | 值来设置特定于线程的存储
原文: value to set thread-specific storage to |
[编辑] 返回值
[编辑] 另请参阅
(C11) |
读取特定于线程的存储 (函数) |