39 lines
969 B
C++
39 lines
969 B
C++
#pragma once
|
|
#ifndef MESSMER_CPPUTILS_LOCK_CONDITIONBARRIER_H
|
|
#define MESSMER_CPPUTILS_LOCK_CONDITIONBARRIER_H
|
|
|
|
#include <mutex>
|
|
#include <condition_variable>
|
|
|
|
//TODO Test
|
|
|
|
namespace cpputils {
|
|
// Like a condition variable, but without spurious wakeups.
|
|
// The waiting threads are only woken, when notify() is called.
|
|
// After a call to release(), future calls to wait() will not block anymore.
|
|
class ConditionBarrier {
|
|
public:
|
|
ConditionBarrier() :_mutex(), _cv(), _triggered(false) {
|
|
}
|
|
|
|
void wait() {
|
|
std::unique_lock<std::mutex> lock(_mutex);
|
|
_cv.wait(lock, [this] {
|
|
return _triggered;
|
|
});
|
|
}
|
|
|
|
void release() {
|
|
std::unique_lock<std::mutex> lock(_mutex);
|
|
_triggered = true;
|
|
_cv.notify_all();
|
|
}
|
|
private:
|
|
std::mutex _mutex;
|
|
std::condition_variable _cv;
|
|
bool _triggered;
|
|
};
|
|
}
|
|
|
|
#endif
|