fixed deadlock when posting events from another thread to wxDFB (patch from #10408 by Anders Larsen)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60521 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2009-05-05 16:09:40 +00:00
parent 9df05aab59
commit 5f3dc0f0a9

View File

@@ -148,17 +148,9 @@ bool wxApp::SetDisplayMode(const wxVideoMode& mode)
void wxApp::WakeUpIdle() void wxApp::WakeUpIdle()
{ {
#if wxUSE_THREADS // we don't need a mutex here, since we use the wxConsoleEventLoop
if (!wxThread::IsMain()) // and wxConsoleEventLoop::WakeUp() is thread-safe
wxMutexGuiEnter();
#endif
wxEventLoopBase * const loop = wxEventLoop::GetActive(); wxEventLoopBase * const loop = wxEventLoop::GetActive();
if ( loop ) if ( loop )
loop->WakeUp(); loop->WakeUp();
#if wxUSE_THREADS
if (!wxThread::IsMain())
wxMutexGuiLeave();
#endif
} }