summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2006-09-06 15:51:15 +0000
committerJohan Dahlin <johan@src.gnome.org>2006-09-06 15:51:15 +0000
commit10cf507b6dbbc85113e3ff3f189ffa43ce400580 (patch)
treec2e1ae4dccc951010b0aca94776b5c41c07897b4
parentefd627d6486f9fb5d44e08d90180ac2d919c5cda (diff)
downloadpygobject-10cf507b6dbbc85113e3ff3f189ffa43ce400580.tar.gz
Increase the timeout to 1000ms instead of 100.
* gobject/pygmainloop.c (pyg_signal_watch_prepare): Increase the timeout to 1000ms instead of 100.
-rw-r--r--ChangeLog5
-rw-r--r--gobject/pygmainloop.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 881f96e4..5090e53b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-09-06 Johan Dahlin <jdahlin@async.com.br>
+
+ * gobject/pygmainloop.c (pyg_signal_watch_prepare): Increase the timeout
+ to 1000ms instead of 100.
+
=== 2.12.1 ===
2006-09-04 Johan Dahlin <jdahlin@async.com.br>
diff --git a/gobject/pygmainloop.c b/gobject/pygmainloop.c
index 54532400..66fc9526 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;
}