From 76a7f9014d4d59228a55d2d885e7002d8b36b76d Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 18 Feb 2014 22:16:56 +0200 Subject: [PATCH] gdbus: Replace g_timeout_add with g_idle_add Passing 0 as timeout to g_timeout_add should equivalent to g_idle_add. --- gdbus/mainloop.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gdbus/mainloop.c b/gdbus/mainloop.c index ec52554b..435fb93b 100644 --- a/gdbus/mainloop.c +++ b/gdbus/mainloop.c @@ -30,8 +30,6 @@ #include "gdbus.h" -#define DISPATCH_TIMEOUT 0 - #define info(fmt...) #define error(fmt...) #define debug(fmt...) @@ -82,8 +80,7 @@ static inline void queue_dispatch(DBusConnection *conn, DBusDispatchStatus status) { if (status == DBUS_DISPATCH_DATA_REMAINS) - g_timeout_add(DISPATCH_TIMEOUT, message_dispatch, - dbus_connection_ref(conn)); + g_idle_add(message_dispatch, dbus_connection_ref(conn)); } static gboolean watch_func(GIOChannel *chan, GIOCondition cond, gpointer data)