Mastering C++ Multithreading
上QQ阅读APP看书,第一时间看更新

Condition variables

The implementation of condition variables with Windows threads is fairly straightforward. It uses a critical section (CRITICAL_SECTION) and condition variable (CONDITION_VARIABLE) along with the condition variable functions to wait for a specific condition variable, or to signal it.