Merge branch 'ipv4' of github.com:fatbob313/umurmur into ipv4
authorMartin Johansson <martin@fatbob.nu>
Sun, 10 Nov 2013 18:42:56 +0000 (19:42 +0100)
committerMartin Johansson <martin@fatbob.nu>
Sun, 10 Nov 2013 18:42:56 +0000 (19:42 +0100)
src/timer.c

index 5383e0e85d06ad0fbac2eb45db10ddb32b60b3dc..55f5f9cf2905e82492dbbbdaf9e17d6a9fd5d4bf 100644 (file)
 
 static uint64_t Timer_now()
 {
-       struct timeval tv;
+       struct timespec ts;
        uint64_t e;
        
-       gettimeofday(&tv, NULL);
-       e = tv.tv_sec * 1000000LL;
-       e += tv.tv_usec;
+        clock_gettime(CLOCK_MONOTONIC, &ts);
+        e = ts.tv_sec * 1000000LL;
+        e += ts.tv_nsec / 1000LL; //convert to microseconds
        return e;
 }