std::atomic_flag::test_and_set
来自cppreference.com
< cpp | atomic | atomic flag
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <atomic> 中定义
|
||
bool test_and_set(std::memory_order order = std::memory_order_seq_cst) volatile; |
(1) | (C++11 起) |
bool test_and_set(std::memory_order order = std::memory_order_seq_cst); |
(2) | (C++11 起) |
原子的状态更改的std::atomic_flag设置(true),并返回它的价值之前举行的
原文:
Atomically changes the state of a std::atomic_flag to set (true) and returns the value it held before.
[编辑] 参数
order | - | 的的内存sycnhronization订购此操作
原文: the memory sycnhronization ordering for this operation |
[编辑] 例外
[编辑] 另请参阅
以原子方式设置标志,以false (公共成员函数) | |
以原子方式设置标志true,并返回其先前的值 原文: atomically sets the flag to true and returns its previous value (函数) | |
(C++11) |
定义内存排序约束给定的原子操作 原文: defines memory ordering constraints for the given atomic operation (typedef) |