From 60d7359a67900ad4601dbc73e07bcd8c803100a5 Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Date: Wed, 29 Oct 2008 17:20:11 -0700 Subject: [PATCH] XQuartz: if 0 out a block to avoid thread-unsafe lockups --- hw/xquartz/X11Application.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/xquartz/X11Application.m b/hw/xquartz/X11Application.m index f213cbf55..766fe139a 100644 --- a/hw/xquartz/X11Application.m +++ b/hw/xquartz/X11Application.m @@ -948,6 +948,7 @@ extern int darwin_modifier_flags; // darwinEvents.c pDev = darwinTabletCurrent; } +#if 0 // XPlugin isn't thread safe ... sigh if(!quartzServerVisible) { xp_window_id wid; @@ -963,6 +964,7 @@ extern int darwin_modifier_flags; // darwinEvents.c if (wid == 0) return; } +#endif DarwinSendPointerEvents(pDev, ev_type, ev_button, pointer_x, pointer_y, pressure, tilt_x, tilt_y);