Commit f6782bb8 authored by Davis King's avatar Davis King

Merge

parents 17592949 a23468b9
...@@ -150,6 +150,9 @@ namespace dlib ...@@ -150,6 +150,9 @@ namespace dlib
// broadcast(). // broadcast().
value = false; value = false;
// signal that we are awake
ReleaseSemaphore(hCountSema,(LONG)1,NULL);
// get a lock on the mutex for the waiters variable // get a lock on the mutex for the waiters variable
waiters_mutex.lock(); waiters_mutex.lock();
// mark that one less thread will be waiting on this signaler. // mark that one less thread will be waiting on this signaler.
...@@ -161,10 +164,11 @@ namespace dlib ...@@ -161,10 +164,11 @@ namespace dlib
else else
{ {
value = true; value = true;
// signal that we are awake
ReleaseSemaphore(hCountSema,(LONG)1,NULL);
} }
// signal that we are awake
ReleaseSemaphore(hCountSema,(LONG)1,NULL);
// relock the associated mutex // relock the associated mutex
m.lock(); m.lock();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment