This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
travelguide/env/condition.hpp
2013-08-05 03:10:18 +03:00

36 lines
510 B
C++

#pragma once
#include "mutex.hpp"
namespace env
{
class Condition : private noncopyable
{
public:
Condition();
~Condition();
void Lock() { m_mutex.Lock(); }
void TryLock() { m_mutex.TryLock(); }
void Unlock() { m_mutex.Unlock(); }
void Signal();
void SignalAll();
void Wait();
class Guard
{
Condition & m_cond;
public:
Guard(Condition & c) : m_cond(c) { m_cond.Lock(); }
~Guard() { m_cond.Unlock(); }
};
private:
Mutex m_mutex;
pthread_cond_t m_condition;
};
}