Use g_get_current_time() insted of gettimeofday().
authorTor Lillqvist <tml@novell.com>
Mon, 24 Jul 2006 12:42:18 +0000 (12:42 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Mon, 24 Jul 2006 12:42:18 +0000 (12:42 +0000)
2006-07-24  Tor Lillqvist  <tml@novell.com>

* tests/slice-test.c: Use g_get_current_time() insted of
gettimeofday().

ChangeLog
ChangeLog.pre-2-12
tests/slice-test.c

index 1e5a7f3..df9aaf2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-07-24  Tor Lillqvist  <tml@novell.com>
+
+       * tests/slice-test.c: Use g_get_current_time() insted of
+       gettimeofday().
+
 2006-07-22  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Bump version
index 1e5a7f3..df9aaf2 100644 (file)
@@ -1,3 +1,8 @@
+2006-07-24  Tor Lillqvist  <tml@novell.com>
+
+       * tests/slice-test.c: Use g_get_current_time() insted of
+       gettimeofday().
+
 2006-07-22  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Bump version
index 52d9572..e3e6962 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <stdio.h>
 #include <string.h>
-#include <sys/time.h> // gettimeofday
 
 #define quick_rand32()  (rand_accu = 1664525 * rand_accu + 1013904223, rand_accu)
 static guint    prime_size = 1021; // 769; // 509
@@ -80,8 +79,8 @@ test_memchunk_thread (gpointer data)
     rand_accu = *(guint32*) data;
   else
     {
-      struct timeval rand_tv;
-      gettimeofday (&rand_tv, NULL);
+      GTimeVal rand_tv;
+      g_get_current_time (&rand_tv);
       rand_accu = rand_tv.tv_usec + (rand_tv.tv_sec << 16);
     }
 
@@ -141,8 +140,8 @@ test_sliced_mem_thread (gpointer data)
     rand_accu = *(guint32*) data;
   else
     {
-      struct timeval rand_tv;
-      gettimeofday (&rand_tv, NULL);
+      GTimeVal rand_tv;
+      g_get_current_time (&rand_tv);
       rand_accu = rand_tv.tv_usec + (rand_tv.tv_sec << 16);
     }