From 10cf507b6dbbc85113e3ff3f189ffa43ce400580 Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Wed, 6 Sep 2006 15:51:15 +0000 Subject: Increase the timeout to 1000ms instead of 100. * gobject/pygmainloop.c (pyg_signal_watch_prepare): Increase the timeout to 1000ms instead of 100. --- ChangeLog | 5 +++++ gobject/pygmainloop.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 881f96e..5090e53 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-09-06 Johan Dahlin + + * gobject/pygmainloop.c (pyg_signal_watch_prepare): Increase the timeout + to 1000ms instead of 100. + === 2.12.1 === 2006-09-04 Johan Dahlin diff --git a/gobject/pygmainloop.c b/gobject/pygmainloop.c index 5453240..66fc952 100644 --- a/gobject/pygmainloop.c +++ b/gobject/pygmainloop.c @@ -117,7 +117,7 @@ pyg_signal_watch_prepare(GSource *source, #ifndef PLATFORM_WIN32 if (pyg_threads_enabled) #endif - *timeout = 100; + *timeout = 1000; return FALSE; } -- cgit