git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60521
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void wxApp::WakeUpIdle()
{
-#if wxUSE_THREADS
- if (!wxThread::IsMain())
- wxMutexGuiEnter();
-#endif
-
+ // we don't need a mutex here, since we use the wxConsoleEventLoop
+ // and wxConsoleEventLoop::WakeUp() is thread-safe
wxEventLoopBase * const loop = wxEventLoop::GetActive();
if ( loop )
loop->WakeUp();
-
-#if wxUSE_THREADS
- if (!wxThread::IsMain())
- wxMutexGuiLeave();
-#endif
}