std::atomic_flag
来自 cppreference.com
定义在头文件 <atomic> 中 |
||
class atomic_flag; |
(自 C++11 起) | |
std::atomic_flag
是一种原子布尔类型。与 std::atomic 的所有特化不同,它保证是无锁的。与 std::atomic<bool> 不同,std::atomic_flag
不提供加载或存储操作。
[编辑] 成员函数
构造一个 atomic_flag (公有成员函数) | |
[已删除] |
赋值运算符(已删除) (公有成员函数) |
原子地将标志设置为 false (公有成员函数) | |
原子地将标志设置为 true 并获取其先前值 (公有成员函数) | |
(C++20) |
原子地返回标志的值 (公有成员函数) |
(C++20) |
阻塞线程,直到收到通知并且原子值更改 (公有成员函数) |
(C++20) |
通知至少一个等待原子对象的线程 (公有成员函数) |
(C++20) |
通知所有阻塞等待原子对象的线程 (公有成员函数) |
[编辑] 示例
可以使用 atomic_flag 在用户空间中实现一个 自旋锁 互斥体。请注意,自旋锁互斥体在实践中 非常可疑。
运行此代码
#include <atomic> #include <iostream> #include <mutex> #include <thread> #include <vector> class mutex { std::atomic_flag m_{}; public: void lock() noexcept { while (m_.test_and_set(std::memory_order_acquire)) #if defined(__cpp_lib_atomic_wait) && __cpp_lib_atomic_wait >= 201907L // Since C++20, locks can be acquired only after notification in the unlock, // avoiding any unnecessary spinning. // Note that even though wait gurantees it returns only after the value has // changed, the lock is acquired after the next condition check. m_.wait(true, std::memory_order_relaxed) #endif ; } bool try_lock() noexcept { return !m_.test_and_set(std::memory_order_acquire); } void unlock() noexcept { m_.clear(std::memory_order_release); #if defined(__cpp_lib_atomic_wait) && __cpp_lib_atomic_wait >= 201907L m_.notify_one(); #endif } }; static mutex m; static int out{}; void f(std::size_t n) { for (std::size_t cnt{}; cnt < 40; ++cnt) { std::lock_guard lock{m}; std::cout << n << ((++out % 40) == 0 ? '\n' : ' '); } } int main() { std::vector<std::thread> v; for (std::size_t n{}; n < 10; ++n) v.emplace_back(f, n); for (auto &t : v) t.join(); }
可能的输出
0 1 1 2 0 1 3 2 3 2 0 1 2 3 2 3 0 1 3 2 0 1 2 3 2 3 0 3 2 3 2 3 2 3 1 2 3 0 1 3 2 3 2 0 1 2 3 0 1 2 3 2 0 1 2 3 0 1 2 3 2 3 2 3 2 0 1 2 3 2 3 0 1 3 2 3 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 3 2 0 2 3 2 3 2 3 2 3 2 3 0 3 2 3 0 3 0 3 2 3 0 3 2 3 2 3 0 2 3 0 3 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9
[编辑] 另请参见
原子地将标志设置为 true 并返回其先前值 (函数) | |
(C++11)(C++11) |
原子地将标志的值设置为 false (函数) |
(C++20)(C++20) |
阻塞线程,直到收到通知并且标志更改 (函数) |
(C++20) |
通知一个阻塞在 atomic_flag_wait 中的线程 (函数) |
(C++20) |
通知所有阻塞在 atomic_flag_wait 中的线程 (函数) |
(C++11) |
将 std::atomic_flag 初始化为 false (宏常量) |
C 文档 for atomic_flag
|