std::atomic_flag_wait, std::atomic_flag_wait_explicit

来自cppreference.com
< cpp‎ | atomic
 
 
并发支持库
线程
(C++11)
(C++20)
(C++20)
this_thread 命名空间
(C++11)
(C++11)
(C++11)
原子类型
(C++11)
(C++20)
原子类型的初始化
(C++11)(C++20 中弃用)
(C++11)(C++20 中弃用)
原子操作的自由函数
原子标志的自由函数
atomic_flag_waitatomic_flag_wait_explicit
(C++20)(C++20)
内存序
互斥
(C++11)
通用锁管理
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
条件变量
(C++11)
信号量
闩与屏障
(C++20)
(C++20)
future
(C++11)
(C++11)
(C++11)
(C++11)
 
在标头 <atomic> 定义
void atomic_flag_wait( const atomic_flag* object, bool old ) noexcept;
(1) (C++20 起)
void atomic_flag_wait( const volatile atomic_flag* object, bool old ) noexcept;
(2) (C++20 起)
void atomic_flag_wait_explicit( const atomic_flag* object,
                                bool old, std::memory_order order ) noexcept;
(3) (C++20 起)
void atomic_flag_wait_explicit( const volatile atomic_flag* object,
                                bool old, std::memory_order order ) noexcept;
(4) (C++20 起)

进行原子等待操作。

比较 object->test(std::memory_order_seq_cst)object->test(order)old,如果它们逐位相等,那么阻塞到加载结果的值表示更改或者 *thisstd::atomic_flag::notify_one()std::atomic_flag::notify_all() 提醒(或线程被虚假地除阻)。

1,2) 内存同步顺序是 std::memory_order_seq_cst
3,4) 内存同步顺序是 order
如果 orderstd::memory_order::releasestd::memory_order::acq_rel 之一,那么行为未定义。

这些函数保证只有在值更改了的情况下才返回,即使底层实现虚假地除阻。

参数

object - 指向要检查并在其上等待的原子标志的指针
old - 要检测的原子标志象不再含有的值
order - 内存同步顺序

返回值

(无)

注解

更改检测的这种形式通常比简单轮询或纯自旋锁高效。

由于 ABA 问题,可能错失从 old 到另一值再回到 old 的更改,而不除阻。

示例

提醒至少一个在原子对象上的等待中阻塞的线程
(std::atomic_flag 的公开成员函数)
提醒所有在原子对象上的等待中阻塞的线程
(std::atomic_flag 的公开成员函数)
提醒一个在 atomic_flag_wait 中阻塞的线程
(函数)
提醒所有在 atomic_flag_wait 中阻塞的线程
(函数)