9

我有两个线程和一个由第二个线程设置的标志。我可以使用atomic_bool,但我希望能够等待* 在第一个线程上设置标志。我怎样才能做到这一点?

我猜我不能使用 a condition_variable,因为如果第二个线程notify_one在第一个线程开始等待之前调用,则线程不会唤醒。

此外,检查标志是否已经设置应该相当快。我想这应该很简单,但我只是卡住了,所以我在这里问。提前致谢。

*编辑:当然是阻止,而不是忙等待。抱歉,如果不清楚。

4

3 回答 3

12

在 cbreak 和 Ravadre(评论)的帮助下,我从这里得到:

int main()
{
    std::mutex m;
    std::condition_variable cv;

    std::thread t([&] {
            std::this_thread::sleep_for(std::chrono::seconds(1));
            std::unique_lock<std::mutex> lock(m);
            cv.wait(lock);
            std::cout << "Yay!\n";
    });

    cv.notify_one();
    t.join();
}

通常根本不会终止,到这里:

int main()
{
    std::mutex m;
    std::condition_variable cv;
    bool flag = false;

    std::thread t([&] {
        std::this_thread::sleep_for(std::chrono::seconds(1));
        std::unique_lock<std::mutex> lock(m);
        cv.wait(lock, [&] { return flag; });
        std::cout << "Yay!\n";
    });

    {
        std::lock_guard<std::mutex> lock(m);
        flag = true;
    }

    cv.notify_one();
    t.join();
}

这实际上完成了这项工作,但似乎仍然有很多不必要的开销。随意发布等效但性能更高(或更优雅)的答案,我很乐意接受。请只使用标准 C++11,如果没有,请解释为什么标准 C++11 不能这样做。

编辑:我还写了一个类 safe_flag 来封装它(再次感谢 cbreak);随时提出任何改进建议。

class safe_flag
{
    mutable std::mutex m_;
    mutable std::condition_variable cv_;
    bool flag_;

public:
    safe_flag()
        : flag_(false)
    {}

    bool is_set() const
    {
        std::lock_guard<std::mutex> lock(m_);
        return flag_;
    }

    void set()
    {
        {
            std::lock_guard<std::mutex> lock(m_);
            flag_ = true;
        }
        cv_.notify_all();
    }

    void reset()
    {
        {
            std::lock_guard<std::mutex> lock(m_);
            flag_ = false;
        }
        cv_.notify_all();
    }

    void wait() const
    {
        std::unique_lock<std::mutex> lock(m_);
        cv_.wait(lock, [this] { return flag_; });
    }

    template <typename Rep, typename Period>
    bool wait_for(const std::chrono::duration<Rep, Period>& rel_time) const
    {
        std::unique_lock<std::mutex> lock(m_);
        return cv_.wait_for(lock, rel_time, [this] { return flag_; });
    }

    template <typename Rep, typename Period>
    bool wait_until(const std::chrono::duration<Rep, Period>& rel_time) const
    {
        std::unique_lock<std::mutex> lock(m_);
        return cv_.wait_until(lock, rel_time, [this] { return flag_; });
    }
};
于 2013-02-17T12:29:30.780 回答
7
bool go = false;
std::mutex mtx;
std::condition_variable cnd;

// waiting thread:
std::unique_lock<std::mutex> lck(mtx);
while (!go)
    cnd.wait(lock);
// when we get here we know that go is true, and we have the lock

// signalling thread:
{
std::unique_lock<std::mutex> lck(mtx);
go = true;
cnd.notify_one();
}
// now we've released the lock, so the waiting thread will make progress
于 2013-02-17T13:13:05.690 回答
1

你的平台到底是什么?在我们使用的 posix 兼容平台上

  sem_t semaphore;
  sem_init( &semaphore , 0 , x );

得到一个初始值为 x 的信号量。然后与

 sem_wait(&semaphore ); sem_post(&semaphore);

您可以同步两个线程。请记住声明semaphore为全局变量以确保两个线程都可以访问它(或通过任何其他实现相同的方式)。

长话短说,您可以:

sem_t semaphore;
sem_init(&semaphore, 0 , 0 );
void thread2(){
   sem_post(&semaphore);    //second thread --A
}
void thread1(){
    sem_wait(&semaphore);   // wait until thread2() executes line A
}

在 Win32 上也应该有类似的实用程序来实现相同的功能。

于 2013-02-17T12:02:03.557 回答