parent
ae4d8cee2a
commit
9feaa959f1
|
@ -107,7 +107,7 @@ CEventQueue::loop()
|
||||||
{
|
{
|
||||||
m_buffer->init();
|
m_buffer->init();
|
||||||
*m_readyCondVar = true;
|
*m_readyCondVar = true;
|
||||||
m_readyCondVar->broadcast();
|
m_readyCondVar->signal();
|
||||||
|
|
||||||
LOG((CLOG_DEBUG "event queue is ready"));
|
LOG((CLOG_DEBUG "event queue is ready"));
|
||||||
while (!m_pending.empty()) {
|
while (!m_pending.empty()) {
|
||||||
|
|
|
@ -1703,7 +1703,7 @@ COSXScreen::watchSystemPowerThread(void*)
|
||||||
#if defined(MAC_OS_X_VERSION_10_7)
|
#if defined(MAC_OS_X_VERSION_10_7)
|
||||||
if (*m_carbonLoopReady == false) {
|
if (*m_carbonLoopReady == false) {
|
||||||
*m_carbonLoopReady = true;
|
*m_carbonLoopReady = true;
|
||||||
m_carbonLoopReady->broadcast();
|
m_carbonLoopReady->signal();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue