Merge branch 'master' of ssh://router/data/git/fio
[fio.git] / time.c
diff --git a/time.c b/time.c
index c7f898be3db3a853b0328c742478c8657e41eda1..ad5ee3fe51773c9019067f593834428afad8fc9b 100644 (file)
--- a/time.c
+++ b/time.c
@@ -3,6 +3,8 @@
 
 #include "fio.h"
 
+static struct timeval genesis;
+
 unsigned long utime_since(struct timeval *s, struct timeval *e)
 {
        double sec, usec;
@@ -120,3 +122,13 @@ void rate_throttle(struct thread_data *td, unsigned long time_spent,
                td->rate_pending_usleep -= overtime;
        }
 }
+
+unsigned long mtime_since_genesis(void)
+{
+       return mtime_since_now(&genesis);
+}
+
+void time_init(void)
+{
+       gettimeofday(&genesis, NULL);
+}