std::atomic_flag_test_and_set, std::atomic_flag_test_and_set_explicit
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <atomic> 中定义
|
||
bool atomic_flag_test_and_set( volatile std::atomic_flag* p ); |
(1) | (C++11 起) |
bool atomic_flag_test_and_set( std::atomic_flag* p ); |
(2) | (C++11 起) |
bool atomic_flag_test_and_set_explicit( volatile std::atomic_flag* p, std::memory_order order ); |
(3) | (C++11 起) |
bool atomic_flag_test_and_set_explicit( std::atomic_flag* p, std::memory_order order ); |
(4) | (C++11 起) |
原子的状态更改的std::atomic_flag指出,
p
进行设置(true)和返回值前举行的. 原文:
Atomically changes the state of a std::atomic_flag pointed to by
p
to set (true) and returns the value it held before. 目录 |
[编辑] 参数
p | - | 指针std::atomic_flag访问
原文: pointer to std::atomic_flag to access |
order | - | 内存同步顺序进行此操作
原文: the memory synchronization order for this operation |
[编辑] 返回值
先前持有的价值的标志指出
p
原文:
The value previously held by the flag pointed to by
p
[编辑] 例外
[编辑] 可能的实现
版本一 |
---|
bool atomic_flag_test_and_set(volatile std::atomic_flag* p) { return p->test_and_set(); } |
版本二 |
bool atomic_flag_test_and_set(std::atomic_flag* p) { return p->test_and_set(); } |
版本三 |
bool atomic_flag_test_and_set_explicit(volatile std::atomic_flag* p, std::memory_order order) { return p->test_and_set(order); } |
版本四 |
bool atomic_flag_test_and_set_explicit(std::atomic_flag* p, std::memory_order order) { return p->test_and_set(order); } |
[编辑] 示例
一个自旋锁互斥体,可以实施使用的atomic_flag在用户空间
原文:
A spinlock mutex can be implemented in userspace using an 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(std::atomic_flag_test_and_set_explicit(&lock, std::memory_order_acquire)) ; // spin until the lock is acquired std::cout << "Output from thread " << n << '\n'; std::atomic_flag_clear_explicit(&lock, std::memory_order_release); } } 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>...
[编辑] 另请参阅
(C++11) |
无锁的布尔原子类型 (类) |
(C++11) (C++11) |
原子设置标志false的值 原文: atomically sets the value of the flag to false (函数) |
(C++11) |
定义内存排序约束给定的原子操作 原文: defines memory ordering constraints for the given atomic operation (typedef) |
C documentation for atomic_flag_test_and_set, atomic_flag_test_and_set_explicit
|