push back width
[lttv.git] / ltt / branches / poly / ltt / time.h
index db85c69c7dc6ccda5ef508502ba66afeacf90f83..55fb5883c7f83bf8ad061e5469a1bf53a1f0033a 100644 (file)
@@ -29,6 +29,7 @@ typedef struct _LttTime {
 
 
 #define NANOSECONDS_PER_SECOND 1000000000
+#define SHIFT_CONST 1.07374182400631629848
 
 static const LttTime ltt_time_zero = { 0, 0 };
 
@@ -62,13 +63,16 @@ static inline LttTime ltt_time_add(LttTime t1, LttTime t2)
 }
 
 
+/* Fastest comparison : t1 > t2 */
 static inline int ltt_time_compare(LttTime t1, LttTime t2)
 {
-  if(t1.tv_sec > t2.tv_sec) return 1;
-  if(t1.tv_sec < t2.tv_sec) return -1;
-  if(t1.tv_nsec > t2.tv_nsec) return 1;
-  if(t1.tv_nsec < t2.tv_nsec) return -1;
-  return 0;
+  int ret=0;
+  if(t1.tv_sec > t2.tv_sec) ret = 1;
+  else if(t1.tv_sec < t2.tv_sec) ret = -1;
+  else if(t1.tv_nsec > t2.tv_nsec) ret = 1;
+  else if(t1.tv_nsec < t2.tv_nsec) ret = -1;
+  
+  return ret;
 }
 
 #define LTT_TIME_MIN(a,b) ((ltt_time_compare((a),(b)) < 0) ? (a) : (b))
@@ -110,7 +114,8 @@ static inline LttTime ltt_time_from_double(double t1)
     g_warning("Conversion from non precise double to LttTime");
 #endif //EXTRA_CHECK
   LttTime res;
-  res.tv_sec = t1/(double)NANOSECONDS_PER_SECOND;
+  //res.tv_sec = t1/(double)NANOSECONDS_PER_SECOND;
+  res.tv_sec = (guint64)(t1 * SHIFT_CONST) >> 30;
   res.tv_nsec = (t1 - (res.tv_sec*NANOSECONDS_PER_SECOND));
   return res;
 }
This page took 0.028708 seconds and 4 git commands to generate.