From: Lukasz Skalski Date: Mon, 20 Oct 2014 16:05:34 +0000 (+0000) Subject: [kdbus][TEMPORARY HACK] Disable 'initial read' X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c6192b63ebd2478fd143d9a028a2b6814d289267;p=platform%2Fupstream%2Fglib.git [kdbus][TEMPORARY HACK] Disable 'initial read' This patch allows perform new API test [1] without errors. 'initial_read' should be disabled till old patches from Tizen repo [2] will be applied in this GitHub repository. [1] https://github.com/lukasz-skalski/glib-kdbus-tests [2] https://review.tizen.org/git/?p=platform/upstream/glib.git;a=shortlog;h=refs/heads/kdbus-integration --- diff --git a/gio/gdbusprivate.c b/gio/gdbusprivate.c index 870e160..924d833 100644 --- a/gio/gdbusprivate.c +++ b/gio/gdbusprivate.c @@ -877,7 +877,7 @@ _g_dbus_worker_do_initial_read (gpointer data) { GDBusWorker *worker = data; g_mutex_lock (&worker->read_lock); - _g_dbus_worker_do_read_unlocked (worker); + //_g_dbus_worker_do_read_unlocked (worker); TEMPORARY HACK! g_mutex_unlock (&worker->read_lock); return FALSE; }