condition_variable 조건변수 주의점
C++의 condition_variable을 보게되면 아래의 코드가 나오는데 매번 cv.wait가 신경이 쓰였다. 일단 아래의 코드를 보자
#include <iostream>
#include <string>
#include <thread>
#include <mutex>
#include <condition_variable>
std::mutex m;
std::condition_variable cv;
std::string data;
bool ready = false;
bool processed = false;
void worker_thread()
{
// Wait until main() sends data
std::unique_lock<std::mutex> lk(m);
cv.wait(lk, []{return ready;});
// after the wait, we own the lock.
std::cout << "Worker thread is processing data\n";
data += " after processing";
// Send data back to main()
processed = true;
std::cout << "Worker thread signals data processing completed\n";
// Manual unlocking is done before notifying, to avoid waking up
// the waiting thread only to block again (see notify_one for details)
lk.unlock();
cv.notify_one();
}
int main()
{
std::thread worker(worker_thread);
data = "Example data";
// send data to the worker thread
{
std::lock_guard<std::mutex> lk(m);
ready = true;
std::cout << "main() signals data ready for processing\n";
}
cv.notify_one();
// wait for the worker
{
std::unique_lock<std::mutex> lk(m);
cv.wait(lk, []{return processed;});
}
std::cout << "Back in main(), data = " << data << '\n';
worker.join();
}
논리적으로 보면 cv.wait의 두번째 인자가 있는이유가 딱히 없다는걸 알수있다. 헌데 왜 이코드가 들어갈까 이는 해당문서를 자세히 보면 알수있다.
위에 잘보면 이는 spurious wekeup라는 문서가 있을것이다.
이게 위키피디아에도 있는데 해당 문서를 잘보면 모든 OS에서 발생한다고 한다.
https://en.wikipedia.org/wiki/Spurious_wakeup
깨우지않았는에도 불구하고 스스로 깨어지는 문제라는 것이다. 그래서 이는 유저모드에서 한번더 체크하는식으로 해결해야한다는 점이다. 이점을 고려해서 std쪽에서는 이를 방지하기 위해 유저변수또한 체크해서 위의 증상을 방지하는 것이다.