C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- std::atomic_store, std::atomic_store_explicit
- std::atomic_load, std::atomic_load_explicit
- std::atomic_exchange, std::atomic_exchange_explicit
- std::atomic
- std::atomic_flag
- std::atomic_ref
- std::atomic_compare_exchange_weak, std::atomic_compare_exchange_strong, std::atomic_compare_exchange_weak_explicit, std::atomic_compare_exchange_strong_explicit
- std::atomic_fetch_add, std::atomic_fetch_add_explicit
- std::atomic_fetch_sub, std::atomic_fetch_sub_explicit
- std::atomic_fetch_and, std::atomic_fetch_and_explicit
- std::atomic_fetch_or, std::atomic_fetch_or_explicit
- std::atomic_fetch_xor, std::atomic_fetch_xor_explicit
- std::atomic_is_lock_free, ATOMIC_xxx_LOCK_FREE
- std::atomic_wait, std::atomic_wait_explicit
- std::atomic_notify_one
- std::atomic_notify_all
- std::atomic_flag_test_and_set, std::atomic_flag_test_and_set_explicit
- std::atomic_flag_clear, std::atomic_flag_clear_explicit
- std::atomic_flag_test, std::atomic_flag_test_explicit
- std::atomic_flag_wait, std::atomic_flag_wait_explicit
- std::atomic_flag_notify_one
- std::atomic_flag_notify_all
- std::atomic_init
- ATOMIC_VAR_INIT
- ATOMIC_FLAG_INIT
- std::memory_order
- std::kill_dependency
- std::atomic_thread_fence
- std::atomic_signal_fence
- 注释
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::atomic_flag_clear, std::atomic_flag_clear_explicit
定义于头文件 <atomic>
|
||
(1) | (C++11 起) | |
void atomic_flag_clear( volatile std::atomic_flag* p ) noexcept; |
||
void atomic_flag_clear( std::atomic_flag* p ) noexcept; |
||
(2) | (C++11 起) | |
void atomic_flag_clear_explicit( volatile std::atomic_flag* p, std::memory_order order ) noexcept; |
||
void atomic_flag_clear_explicit( std::atomic_flag* p, std::memory_order order ) noexcept; |
||
原子地更改 p
所指向的 std::atomic_flag 为清除( false )。
参数
p | - | 指向要访问的 std::atomic_flag 的指针 |
order | - | 此操作所用的内存同步顺序,只容许 std::memory_order_relaxed 、 std::memory_order_release 或 std::memory_order_seq_cst 。 |
返回值
无。
可能的实现
版本一 |
---|
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 并返回其先前值 (函数) | |
(C++11) |
为给定的原子操作定义内存顺序制约 (枚举) |