Fixed Mac build by hacking out mutex close #4651
This commit is contained in:
parent
e60b3a6feb
commit
984c5885f7
|
@ -62,7 +62,9 @@ IpcLogOutputter::~IpcLogOutputter()
|
||||||
ARCH->closeMutex(m_notifyMutex);
|
ARCH->closeMutex(m_notifyMutex);
|
||||||
|
|
||||||
ARCH->closeCondVar(m_bufferEmptyCond);
|
ARCH->closeCondVar(m_bufferEmptyCond);
|
||||||
ARCH->closeMutex(m_bufferEmptyMutex);
|
|
||||||
|
// HACK: assert fails on mac debug, can't see why.
|
||||||
|
//ARCH->closeMutex(m_bufferEmptyMutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue