std::atomic_flag
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <atomic> 中定义
|
||
class atomic_flag; |
(C++11 起) | |
c|std::atomic_flag}}是一个原子的布尔类型。跟std::atomic的其他所有特化类不同,它是锁无关的。与std::atomic<bool>不同的是,std::atomic_flag
没有提供load或者store操作。
[编辑] 成员函数
构造一个atomic_flag (公共成员函数) | |
赋值运算符 (公共成员函数) | |
以原子方式设置标志,以false (公共成员函数) | |
以原子方式设置标志true,并获得其以前的值 原文: atomically sets the flag to true and obtains its previous value (公共成员函数) |
[编辑] 例
自旋锁互斥体可以使用atomic_flag在用户空间实现。
#include <thread> #include <vector> #include <iostream> #include <atomic> std::atomic_flag lock = ATOMIC_FLAG_INIT; void f(int n) { for(int cnt = 0; cnt < 100; ++cnt) { while(lock.test_and_set(std::memory_order_acquire)) // acquire lock ; // spin std::cout << "Output from thread " << n << '\n'; lock.clear(std::memory_order_release); // release lock } } int main() { std::vector<std::thread> v; for (int n = 0; n < 10; ++n) { v.emplace_back(f, n); } for (auto& t : v) { t.join(); } }
输出:
Output from thread 2 Output from thread 6 Output from thread 7 ...<exactly 1000 lines>...
[编辑] 另请参阅
以原子方式设置标志true,并返回其先前的值 原文: atomically sets the flag to true and returns its previous value (函数) | |
(C++11) (C++11) |
原子设置标志false的值 原文: atomically sets the value of the flag to false (函数) |
(C++11) |
initializes an std::atomic_flag to false (常量宏) |
C documentation for atomic_flag
|