aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2014-08-18 14:28:31 +0200
committerThomas White <taw@physics.org>2014-08-18 14:38:50 +0200
commit8e770f218c07cd71c3ba7262348c76ced477ba5b (patch)
treeebf9c4262e196297c64b5ecceb4101ec06dfebb1 /tests
parent30e5adcee376d20ae9cc622d2cf3675b3fac3c5b (diff)
gettimeofday() fixes
Diffstat (limited to 'tests')
-rw-r--r--tests/gpu_sim_check.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/gpu_sim_check.c b/tests/gpu_sim_check.c
index 0419d945..1526ac86 100644
--- a/tests/gpu_sim_check.c
+++ b/tests/gpu_sim_check.c
@@ -34,6 +34,12 @@
#include <stdlib.h>
#include <stdio.h>
+#ifdef HAVE_CLOCK_GETTIME
+#include <time.h>
+#else
+#include <sys/time.h>
+#endif
+
#include "../src/diffraction.h"
#include "../src/diffraction-gpu.h"
#include <detector.h>
@@ -61,7 +67,7 @@ static double get_hires_seconds()
{
struct timeval tp;
gettimeofday(&tp, NULL);
- return (double)tp.tv_sec + ((double)tp.tv_nsec/1e9);
+ return (double)tp.tv_sec + ((double)tp.tv_usec/1e6);
}
#endif