[glib] Use g_usleep() for portability, bug #644465



commit 9505ad05eedefff2030bb20c587f168bb4dedeb7
Author: Tor Lillqvist <tml iki fi>
Date:   Fri Mar 11 10:19:42 2011 +0200

    Use g_usleep() for portability, bug #644465

 glib/tests/timeout.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/glib/tests/timeout.c b/glib/tests/timeout.c
index 9354cd7..824afc0 100644
--- a/glib/tests/timeout.c
+++ b/glib/tests/timeout.c
@@ -61,7 +61,7 @@ test_func (gpointer data)
   /* Make the timeout take up to 0.1 seconds.
    * We should still get scheduled for the next second.
    */
-  usleep (count * 10000);
+  g_usleep (count * 10000);
 
   if (count < 10)
     return TRUE;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]