mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-11 23:16:14 +01:00
Use g_timeout_add_seconds for some long timeouts
https://bugzilla.gnome.org/show_bug.cgi?id=692618
This commit is contained in:
parent
1a7b4b42a8
commit
50850cdf98
@ -68,9 +68,9 @@ _g_assert_property_notify_run (gpointer object,
|
||||
G_CALLBACK (on_property_notify),
|
||||
&data);
|
||||
g_free (s);
|
||||
timeout_id = g_timeout_add (30 * 1000,
|
||||
on_property_notify_timeout,
|
||||
&data);
|
||||
timeout_id = g_timeout_add_seconds (30,
|
||||
on_property_notify_timeout,
|
||||
&data);
|
||||
g_main_loop_run (data.loop);
|
||||
g_signal_handler_disconnect (object, handler_id);
|
||||
g_source_remove (timeout_id);
|
||||
@ -117,9 +117,9 @@ _g_assert_signal_received_run (gpointer object,
|
||||
signal_name,
|
||||
G_CALLBACK (on_signal_received),
|
||||
&data);
|
||||
timeout_id = g_timeout_add (30 * 1000,
|
||||
on_signal_received_timeout,
|
||||
&data);
|
||||
timeout_id = g_timeout_add_seconds (30,
|
||||
on_signal_received_timeout,
|
||||
&data);
|
||||
g_main_loop_run (data.loop);
|
||||
g_signal_handler_disconnect (object, handler_id);
|
||||
g_source_remove (timeout_id);
|
||||
|
@ -176,7 +176,7 @@ main (int argc, char *argv[])
|
||||
#endif
|
||||
|
||||
alive = 2;
|
||||
g_timeout_add (30000, quit_loop, main_loop);
|
||||
g_timeout_add_seconds (30, quit_loop, main_loop);
|
||||
|
||||
#ifdef TEST_THREAD
|
||||
g_thread_create (test_thread, GINT_TO_POINTER (10), FALSE, NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user