Refactor Sensor related code; introduce seperate functions for dealing with DataPoints
[matches/MCTX3420.git] / server / common.h
index 1275032..5b6be66 100644 (file)
 
 #include "log.h"
 #include "fastcgi.h"
-#include "thread.h"
+
+/**Converts a timeval to a double**/
+#define TIMEVAL_TO_DOUBLE(tv) ((tv).tv_sec + 1e-6 * ((tv).tv_usec))
+/**Takes the tv1-tv2 between two timevals and returns the result as a double*/
+#define TIMEVAL_DIFF(tv1, tv2) ((tv1).tv_sec - (tv2).tv_sec + 1e-6 * ((tv1).tv_usec - (tv2).tv_usec))
 
 #endif //_COMMON_H

UCC git Repository :: git.ucc.asn.au