summaryrefslogtreecommitdiff
path: root/tests/benchtest4.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchtest4.c')
-rw-r--r--tests/benchtest4.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/benchtest4.c b/tests/benchtest4.c
index 772d100..d64438d 100644
--- a/tests/benchtest4.c
+++ b/tests/benchtest4.c
@@ -59,18 +59,18 @@ struct _timeb currSysTimeStop;
long durationMilliSecs;
long overHeadMilliSecs = 0;
-#define GetDurationMilliSecs(_TStart, _TStop) ((_TStop.time*1000+_TStop.millitm) \
- - (_TStart.time*1000+_TStart.millitm))
+#define GetDurationMilliSecs(_TStart, _TStop) ((long)((_TStop.time*1000+_TStop.millitm) \
+ - (_TStart.time*1000+_TStart.millitm)))
/*
* Dummy use of j, otherwise the loop may be removed by the optimiser
* when doing the overhead timing with an empty loop.
*/
#define TESTSTART \
- { int i, j = 0, k = 0; _ftime(&currSysTimeStart); for (i = 0; i < ITERATIONS; i++) { j++;
+ { int i, j = 0, k = 0; PTW32_FTIME(&currSysTimeStart); for (i = 0; i < ITERATIONS; i++) { j++;
#define TESTSTOP \
- }; _ftime(&currSysTimeStop); if (j + k == i) j++; }
+ }; PTW32_FTIME(&currSysTimeStop); if (j + k == i) j++; }
void