From: Mike Gorse Date: Thu, 12 Apr 2012 16:45:58 +0000 (-0500) Subject: Increase start-up timeout to 15 seconds X-Git-Tag: AT_SPI2_CORE_2_5_1~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f022662044b1c0c0016eb89360419f48a47eb78f;p=platform%2Fupstream%2Fat-spi2-core.git Increase start-up timeout to 15 seconds It seems that a five-second time-out is often not sufficient. --- diff --git a/atspi/atspi-misc.c b/atspi/atspi-misc.c index d6ffc7a..37971cf 100644 --- a/atspi/atspi-misc.c +++ b/atspi/atspi-misc.c @@ -39,7 +39,7 @@ static void handle_get_items (DBusPendingCall *pending, void *user_data); static DBusConnection *bus = NULL; static GHashTable *live_refs = NULL; static gint method_call_timeout = 800; -static gint app_startup_time = 5000; +static gint app_startup_time = 15000; GMainLoop *atspi_main_loop; gboolean atspi_no_cache; @@ -1479,7 +1479,7 @@ atspi_get_a11y_bus (void) * behavior. * * By default, the normal timeout is set to 800 ms, and the application startup - * timeout is set to 5 seconds. + * timeout is set to 15 seconds. */ void atspi_set_timeout (gint val, gint startup_time)