atomic_is_lock_free
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <stdatomic.h> 中定义
|
||
_Bool atomic_is_lock_free( const volatile A* obj ); |
||
确定的原子指向的对象的
obj
实现无锁的原文:
Determines if the atomic object pointed to by
obj
is implemented lock-free.这是一个通用函数定义的所有原子的对象类型。
A
是一个原子对象的类型.原文:
This is a 通用函数 defined for all atomic object types.
A
is the type of an atomic object.[编辑] 参数
obj | - | 指针的原子对象进行检查
原文: pointer to the atomic object to inspect |
[编辑] 返回值
true如果的原子对象是无锁的,
false
否则.原文:
true if the atomic object is lock-free,
false
otherwise.[编辑] 另请参阅
表明,在给定的原子类型是无锁的 原文: indicates that the given atomic type is lock-free (常量宏) | |
C++ documentation for atomic_is_lock_free
|