]> AND Private Git Repository - loba.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Use clock_gettime for a better resolution in timer.h.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Thu, 1 Mar 2012 08:44:06 +0000 (09:44 +0100)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Thu, 1 Mar 2012 08:44:06 +0000 (09:44 +0100)
Makefile
timer.h

index 59afd305661ef32ebad623058992b63083ef433e..7ec6c5ded684d55e2da6cad41d148014d5f28ffb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ LDFLAGS += -L $(SIMGRID_INSTALL_DIR)/lib
 LDFLAGS += -Wl,-rpath,$(SIMGRID_INSTALL_DIR)/lib
 
 LINK.o = $(CXX) $(CXXFLAGS) $(LDFLAGS) $(TARGET_ARCH)
-LDLIBS := -lsimgrid
+LDLIBS := -lsimgrid -lrt
 
 MAKEDEPEND.FLAGS =  $(CPPFLAGS) -MM -MG -MF $@ $<
 MAKEDEPEND.C = $(CC) $(CFLAGS) $(MAKEDEPEND.FLAGS)
diff --git a/timer.h b/timer.h
index 7ddc3eea1fdd9a151d873e09ef78a72b2683e526..52502a1f10eca8c23935491fc693acd9b7c5ecaf 100644 (file)
--- a/timer.h
+++ b/timer.h
@@ -1,51 +1,31 @@
 #ifndef TIMER_H
 #define TIMER_H
 
-#include <sys/time.h>
-#include <sys/resource.h>
-
-#ifdef _BSD_SOURCE
-#  define HAVE_TIMERADD
-#  define HAVE_TIMERSUB
-#  define HAVE_TIMERCLEAR
-#else
-#  warning _BSD_SOURCE not defined
-#  undef HAVE_TIMERADD
-#  undef HAVE_TIMERSUB
-#  undef HAVE_TIMERCLEAR
-#endif
+#include <ctime>
 
 inline
-struct timeval operator+(const struct timeval& a, const struct timeval& b)
+struct timespec operator+(const struct timespec& a, const struct timespec& b)
 {
-    struct timeval result;
-#ifdef HAVE_TIMERADD
-    timeradd(&a, &b, &result);
-#else
+    struct timespec result;
     result.tv_sec = a.tv_sec + b.tv_sec;
-    result.tv_usec = a.tv_usec + b.tv_usec;
-    if (result.tv_usec >= 1000000) {
+    result.tv_nsec = a.tv_nsec + b.tv_nsec;
+    if (result.tv_nsec >= 1000000000L) {
         ++result.tv_sec;
-        result.tv_usec -= 1000000;
+        result.tv_nsec -= 1000000000L;
     }
-#endif
     return result;
 }
 
 inline
-struct timeval operator-(const struct timeval& a, const struct timeval& b)
+struct timespec operator-(const struct timespec& a, const struct timespec& b)
 {
-    struct timeval result;
-#ifdef HAVE_TIMERSUB
-    timersub(&a, &b, &result);
-#else
+    struct timespec result;
     result.tv_sec = a.tv_sec - b.tv_sec;
-    result.tv_usec = a.tv_usec - b.tv_usec;
-    if (result.tv_usec < 0) {
+    result.tv_nsec = a.tv_nsec - b.tv_nsec;
+    if (result.tv_nsec < 0) {
         --result.tv_sec;
-        result.tv_usec += 1000000;
+        result.tv_nsec += 1000000000L;
     }
-#endif
     return result;
 }
 
@@ -60,19 +40,19 @@ public:
     void start();
     void stop();
 
-    struct timeval tv_duration() const;
+    struct timespec tv_duration() const;
     double duration() const;
 
 private:
     clock_type clk;
-    struct timeval before;
-    struct timeval after;
-    struct timeval difference;
+    struct timespec before;
+    struct timespec after;
+    struct timespec difference;
 
-    void get_time(struct timeval& tv);
+    void get_time(struct timespec& tv);
 
-    static void tv_clear(struct timeval& a);
-    static double timertod(const struct timeval& a);
+    static void tv_clear(struct timespec& a);
+    static double timertod(const struct timespec& a);
 };
 
 inline
@@ -108,7 +88,7 @@ void timestamp::stop()
 }
 
 inline
-struct timeval timestamp::tv_duration() const
+struct timespec timestamp::tv_duration() const
 {
     return difference;
 }
@@ -120,36 +100,34 @@ double timestamp::duration() const
 }
 
 inline
-void timestamp::get_time(struct timeval& tv)
+void timestamp::get_time(struct timespec& tv)
 {
     switch (clk) {
     case cpu_time: {
-        struct rusage usage;
-        getrusage(RUSAGE_SELF, &usage);
-        tv = usage.ru_utime + usage.ru_stime;
+        clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &tv);
         break;
     }
     case wallclock_time:
-        gettimeofday(&tv, NULL);
+#ifdef CLOCK_MONOTONIC_RAW
+        clock_gettime(CLOCK_MONOTONIC_RAW, &tv);
+#else
+        clock_gettime(CLOCK_MONOTONIC, &tv);
+#endif
         break;
     }
 }
 
 inline
-void timestamp::tv_clear(struct timeval& a)
+void timestamp::tv_clear(struct timespec& a)
 {
-#ifdef HAVE_TIMERCLEAR
-    timerclear(&a);
-#else
     a.tv_sec = 0;
-    a.tv_usec = 0;
-#endif
+    a.tv_nsec = 0;
 }
 
 inline
-double timestamp::timertod(const struct timeval& a)
+double timestamp::timertod(const struct timespec& a)
 {
-    return a.tv_sec + a.tv_usec / 1e6;
+    return a.tv_sec + a.tv_nsec / 1e9;
 }
 
 #endif // !TIMER_H