fixed deadlock in CoverageGenerator related to Wait/Signal logic in ThreadedList

This commit is contained in:
rachytski 2013-02-08 16:51:30 +03:00 committed by Alex Zolotarev
parent 3e090e225f
commit f7a07d5ec8

View file

@ -35,7 +35,7 @@ public:
m_isEmpty = !hasElements;
if (!hadElements && hasElements)
m_Cond.Signal();
m_Cond.Signal(true);
}
void PushBack(T const & t)
@ -48,7 +48,7 @@ public:
m_isEmpty = false;
if (doSignal)
m_Cond.Signal();
m_Cond.Signal(true);
}
void PushFront(T const & t)
@ -61,7 +61,7 @@ public:
m_isEmpty = false;
if (doSignal)
m_Cond.Signal();
m_Cond.Signal(true);
}
void SetName(char const * name)