Some freezing fixed

This commit is contained in:
Nekotekina 2014-06-26 01:59:23 +04:00
parent 2200e6f4d9
commit eca7339a67
6 changed files with 38 additions and 20 deletions

View file

@ -6,7 +6,8 @@ class SSemaphore
u32 m_count;
u32 m_in_order;
u32 m_out_order;
std::mutex m_mutex, m_cv_mutex;
std::mutex m_cv_mutex;
std::mutex m_mutex;
std::condition_variable m_cond;
public: