std::condition_variable::wait_until
template< class Clock, class Duration > std::cv_status |
(1) | (自 C++11 起) |
template< class Clock, class Duration, class Predicate > bool wait_until( std::unique_lock<std::mutex>& lock, |
(2) | (自 C++11 起) |
wait_until
使当前线程阻塞,直到条件变量被通知、给定的时间点已到达或出现虚假唤醒。 pred 可以选择性地提供,以检测虚假唤醒。
if (wait_until(lock, abs_time) == std::cv_status::timeout)
return pred();
return true;.
在 wait_until
返回后,lock.owns_lock() 为 true,并且 lock.mutex() 被调用线程锁定。 如果这些后置条件不能满足[1],则调用 std::terminate。
如果满足以下条件,则行为未定义
- lock.owns_lock() 为 false。
- lock.mutex() 未被调用线程锁定。
- 如果其他线程也正在等待 *this,则 lock.mutex() 与被等待函数(wait、wait_for 和
wait_until
)在 *this 上解锁的互斥锁不同。
- ↑ 这可能发生在互斥锁的重新锁定抛出异常时。
内容 |
[编辑] 参数
lock | - | 必须由调用线程锁定的锁 |
abs_time | - | 等待过期的时点 |
pred | - | 用于检查等待是否可以完成的谓词 |
类型要求 | ||
-Predicate 必须满足 FunctionObject 的要求。 | ||
-pred() 必须是有效的表达式,其类型和值类别必须满足 BooleanTestable 的要求。 |
[编辑] 返回值
[编辑] 异常
[编辑] 注释
标准建议使用与 abs_time 绑定的时钟来测量时间;该时钟不需要是单调时钟。如果时钟发生不连续调整,则该函数的行为没有保证,但现有实现会将 abs_time 从 Clock
转换为 std::chrono::system_clock 并委托给 POSIX pthread_cond_timedwait
,以便等待时间尊重系统时钟的调整,但不会尊重用户提供的 Clock
的调整。在任何情况下,由于调度或资源竞争延迟,该函数也可能等待的时间比 abs_time 到达的时间更长。
即使使用的时钟是 std::chrono::steady_clock 或其他单调时钟,系统时钟调整也可能导致虚假唤醒。
notify_one()
/notify_all()
和 wait()
/wait_for()
/wait_until()
的三个原子部分(解锁 + 等待,唤醒和锁定)的影响按单个总顺序发生,可以看作是原子变量的 修改顺序:该顺序特定于此单个条件变量。这使得 notify_one()
无法例如延迟并解除阻塞一个线程,该线程在发出 notify_one()
调用后立即开始等待。
[编辑] 示例
#include <chrono> #include <condition_variable> #include <iostream> #include <thread> std::condition_variable cv; std::mutex cv_m; // This mutex is used for three purposes: // 1) to synchronize accesses to i // 2) to synchronize accesses to std::cerr // 3) for the condition variable cv int i = 0; void waits() { std::unique_lock<std::mutex> lk(cv_m); std::cerr << "Waiting... \n"; cv.wait(lk, []{ return i == 1; }); std::cerr << "...finished waiting. i == 1\n"; } void signals() { std::this_thread::sleep_for(std::chrono::seconds(1)); { std::lock_guard<std::mutex> lk(cv_m); std::cerr << "Notifying...\n"; } cv.notify_all(); std::this_thread::sleep_for(std::chrono::seconds(1)); { std::lock_guard<std::mutex> lk(cv_m); i = 1; std::cerr << "Notifying again...\n"; } cv.notify_all(); } int main() { std::thread t1(waits), t2(waits), t3(waits), t4(signals); t1.join(); t2.join(); t3.join(); t4.join(); }
可能的输出
Waiting... Waiting... Waiting... Notifying... Notifying again... ...finished waiting. i == 1 ...finished waiting. i == 1 ...finished waiting. i == 1
[编辑] 缺陷报告
以下行为变更缺陷报告被追溯应用于之前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 2093 | C++11 | 规范中缺少超时相关异常 | 提到这些异常 |
LWG 2114 (P2167R3) |
C++11 | 可转换为 bool 的能力太弱,无法反映实现的预期 | 加强了要求 |
LWG 2135 | C++11 | 如果 lock.lock() 抛出异常,行为不清楚 | 在这种情况下调用 std::terminate |
[编辑] 另请参见
阻塞当前线程,直到条件变量被唤醒 (公共成员函数) | |
阻塞当前线程,直到条件变量被唤醒或超过指定的超时时间 (公共成员函数) |