waitcauses the current thread to block until the condition variable is notified or a spurious wakeup occurs, optionally looping until some predicate is satisfied (bool(stop_waiting()) == true).
예제
#include <iostream>
#include <condition_variable>
#include <thread>
#include <chrono>
std::condition_variable 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();
}
Possible output:
Waiting...
Waiting...
Waiting...
Notifying...
Notifying again...
...finished waiting. i == 1
...finished waiting. i == 1
...finished waiting. i == 1
Conditional Variable 은
wait 할떄
wiat( false ) 면 lock 을 풀고 대기 하고
wiat( true ) 면 빠져나와 다음 코드를 진행한다
ref : https://en.cppreference.com/w/cpp/thread/condition_variable/wait
반응형
'운영체제 & 병렬처리 > Multithread' 카테고리의 다른 글
future , async (간략한 비동기,동기 함수 실행) (1) (0) | 2022.09.11 |
---|---|
condition_variable 예제 (Produce, Consumer) (0) | 2022.09.11 |
Event (이벤트) 순서 제어, WaitForSingleObject (0) | 2022.09.09 |
Sleep 함수의 이해 (0) | 2022.09.09 |
Spinlock, 구현해 보기 Lock 구현 (0) | 2022.09.08 |