git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30095
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// wxWakeUpIdle
//-----------------------------------------------------------------------------
// wxWakeUpIdle
//-----------------------------------------------------------------------------
+// RR/KH: The wxMutexGui calls are not needed on GTK2 according to
+// the GTK faq, http://www.gtk.org/faq/#AEN500
+// The calls to gdk_threads_enter() and leave() are specifically noted
+// as not being necessary. The MutexGui calls are still left in for GTK1.
+// Eliminating the MutexGui calls fixes the long-standing "random" lockup
+// when using wxPostEvent (which calls WakeUpIdle) from a thread.
+
void wxApp::WakeUpIdle()
{
void wxApp::WakeUpIdle()
{
#if wxUSE_THREADS
if (!wxThread::IsMain())
wxMutexGuiEnter();
#if wxUSE_THREADS
if (!wxThread::IsMain())
wxMutexGuiEnter();
+#endif // wxUSE_THREADS_
+#endif // __WXGTK2__
if (g_isIdle)
wxapp_install_idle_handler();
if (g_isIdle)
wxapp_install_idle_handler();
#if wxUSE_THREADS
if (!wxThread::IsMain())
wxMutexGuiLeave();
#if wxUSE_THREADS
if (!wxThread::IsMain())
wxMutexGuiLeave();
+#endif // wxUSE_THREADS_
+#endif // __WXGTK2__
}
//-----------------------------------------------------------------------------
}
//-----------------------------------------------------------------------------
// wxWakeUpIdle
//-----------------------------------------------------------------------------
// wxWakeUpIdle
//-----------------------------------------------------------------------------
+// RR/KH: The wxMutexGui calls are not needed on GTK2 according to
+// the GTK faq, http://www.gtk.org/faq/#AEN500
+// The calls to gdk_threads_enter() and leave() are specifically noted
+// as not being necessary. The MutexGui calls are still left in for GTK1.
+// Eliminating the MutexGui calls fixes the long-standing "random" lockup
+// when using wxPostEvent (which calls WakeUpIdle) from a thread.
+
void wxApp::WakeUpIdle()
{
void wxApp::WakeUpIdle()
{
#if wxUSE_THREADS
if (!wxThread::IsMain())
wxMutexGuiEnter();
#if wxUSE_THREADS
if (!wxThread::IsMain())
wxMutexGuiEnter();
+#endif // wxUSE_THREADS_
+#endif // __WXGTK2__
if (g_isIdle)
wxapp_install_idle_handler();
if (g_isIdle)
wxapp_install_idle_handler();
#if wxUSE_THREADS
if (!wxThread::IsMain())
wxMutexGuiLeave();
#if wxUSE_THREADS
if (!wxThread::IsMain())
wxMutexGuiLeave();
+#endif // wxUSE_THREADS_
+#endif // __WXGTK2__
}
//-----------------------------------------------------------------------------
}
//-----------------------------------------------------------------------------