gpt4 book ai didi

C++ 11 替代 pthread_cond_timedwait

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:19:15 25 4
gpt4 key购买 nike

我需要让一个线程等待直到任一个

  • 超时已过,或者
  • 一个变量被另一个线程改变

经过一些研究,我发现 pthreads 有 pthread_cond_timedwait,如果我要使用 pthreads,这在这种情况下可能很有用。

我改用 C++ 11 线程。在不完全传递给 pthreads 的情况下,是否有适合我的替代方案?

最佳答案

是的,你想要 std::condition_variable 来自 <condition_variable> , 它有一个成员函数 wait_for这需要一段时间。

The condition_variable class is a synchronization primitive that can be used to block a thread, or multiple threads at the same time, until:

  • a notification is received from another thread
  • a timeout expires

关于C++ 11 替代 pthread_cond_timedwait,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16014425/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com