std::atomic_flag_clear, std::atomic_flag_clear_explicit
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <atomic> 中定义
|
||
void atomic_flag_clear( volatile std::atomic_flag* p ); |
(1) | (C++11 起) |
void atomic_flag_clear( std::atomic_flag* p ); |
(2) | (C++11 起) |
void atomic_flag_clear_explicit( volatile std::atomic_flag* p, std::memory_order order ) |
(3) | (C++11 起) |
void atomic_flag_clear_explicit( std::atomic_flag* p, std::memory_order order ) |
(4) | (C++11 起) |
Atomically changes the state of a std::atomic_flag pointed to by p
to clear (false).
目录 |
[编辑] 参数
p | - | 指针std::atomic_flag访问
原文: pointer to std::atomic_flag to access |
order | - | the memory sycnhronization ordering for this operation: only std::memory_order_relaxed, std::memory_order_consume, std::memory_order_acquire, or std::memory_order_seq_cst are permitted. |
[编辑] 返回值
无
[编辑] 例外
[编辑] 可能的实现
版本一 |
---|
void atomic_flag_clear(volatile std::atomic_flag* p) { p->clear(); } |
版本二 |
void atomic_flag_clear(std::atomic_flag* p) { p->clear(); } |
版本三 |
void atomic_flag_clear_explicit(volatile std::atomic_flag* p, std::memory_order order) { p->clear(order); } |
版本四 |
void atomic_flag_clear_explicit(std::atomic_flag* p, std::memory_order order) { p->clear(order); } |
[编辑] 另请参阅
(C++11) |
无锁的布尔原子类型 (类) |
以原子方式设置标志true,并返回其先前的值 原文: atomically sets the flag to true and returns its previous value (函数) | |
(C++11) |
定义内存排序约束给定的原子操作 原文: defines memory ordering constraints for the given atomic operation (typedef) |
C documentation for atomic_flag_clear, atomic_flag_clear_explicit
|