forked from organicmaps/organicmaps
fixed deadlock in CoverageGenerator related to Wait/Signal logic in ThreadedList
This commit is contained in:
parent
3e090e225f
commit
f7a07d5ec8
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue