std::condition_variable_any::wait_until
template< class Lock, class Clock, class Duration > std::cv_status |
(1) | (自 C++11 起) |
template< class Lock, class Clock, class Duration, class Predicate > bool wait_until( Lock& lock, |
(2) | (自 C++11 起) |
template< class Lock, class Clock, class Duration, class Predicate > bool wait_until( Lock& lock, std::stop_token stoken, |
(3) | (自 C++20 起) |
wait_until
会导致当前线程阻塞,直到条件变量被通知,给定的持续时间已过去,或发生虚假唤醒。 pred 可以选择性地提供以检测虚假唤醒。
if (wait_until(lock, abs_time) == std::cv_status::timeout)
return pred();
return true;.
{
if (pred())
return true;
if (wait_until(lock, abs_time) == std::cv_status::timeout)
return pred();
}
return pred();.
wait_until
返回后,lock 会被调用线程锁定。如果这个后置条件无法满足[1],调用 std::terminate。
- ↑ 如果互斥锁的重新锁定抛出异常,就会发生这种情况。
内容 |
[编辑] 参数
lock | - | 一个必须由调用线程锁定的锁 |
stoken | - | 用于注册中断的停止标记 |
abs_time | - | 等待过期的时刻 |
pred | - | 用于检查等待是否可以完成的谓词 |
类型要求 | ||
-Lock 必须满足 BasicLockable 的要求。 | ||
-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()
的三个原子部分(解锁+等待、唤醒和锁定)的效果以单个总顺序发生,可以被视为 修改顺序 of an atomic variable: the order is specific to this individual condition variable. This makes it impossible for notify_one()
to, for example, be delayed and unblock a thread that started waiting just after the call to notify_one()
was made.
[编辑] 示例
#include <chrono> #include <condition_variable> #include <iostream> #include <thread> std::condition_variable_any 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 |
[编辑] 另请参阅
阻塞当前线程,直到条件变量被唤醒 (公共成员函数) | |
wait_until |
阻塞当前线程,直到条件变量被唤醒或直到达到指定的时刻 (公共成员函数) |