summaryrefslogtreecommitdiff
path: root/tests/test-timer-performance.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-01-24 11:43:32 -0500
committerGitHub <noreply@github.com>2017-01-24 11:43:32 -0500
commitac9ddce37d16af4e36c1ff945c12aaaf615e69d8 (patch)
tree4987937426f56c881cb2a83e607924c0103ab3b4 /tests/test-timer-performance.c
parente5951aa21dda9f8c9e87a8b892ae42a531e4e9f4 (diff)
parent39cea8220a9bcc51d97a7832760591e117cdde7a (diff)
Merge pull request #104 from opensourcerouting/time-cleanup
Time cleanup
Diffstat (limited to 'tests/test-timer-performance.c')
-rw-r--r--tests/test-timer-performance.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-timer-performance.c b/tests/test-timer-performance.c
index ee45ede6ac..a7d09beecc 100644
--- a/tests/test-timer-performance.c
+++ b/tests/test-timer-performance.c
@@ -61,7 +61,7 @@ int main(int argc, char **argv)
for (i = 0; i < SCHEDULE_TIMERS; i++)
thread_cancel(timers[i]);
- quagga_gettime(QUAGGA_CLK_MONOTONIC, &tv_start);
+ monotime(&tv_start);
for (i = 0; i < SCHEDULE_TIMERS; i++)
{
@@ -72,7 +72,7 @@ int main(int argc, char **argv)
NULL, interval_msec);
}
- quagga_gettime(QUAGGA_CLK_MONOTONIC, &tv_lap);
+ monotime(&tv_lap);
for (i = 0; i < REMOVE_TIMERS; i++)
{
@@ -84,7 +84,7 @@ int main(int argc, char **argv)
timers[index] = NULL;
}
- quagga_gettime(QUAGGA_CLK_MONOTONIC, &tv_stop);
+ monotime(&tv_stop);
t_schedule = 1000 * (tv_lap.tv_sec - tv_start.tv_sec);
t_schedule += (tv_lap.tv_usec - tv_start.tv_usec) / 1000;