[LTP] [PATCH 3/5] syscalls: Don't use tst_syscall() unnecessarily
Viresh Kumar
viresh.kumar@linaro.org
Tue May 19 10:51:10 CEST 2020
These syscall are old enough and must have support in libc for everyone.
Don't use tst_syscall() for them unnecessarily.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
lib/parse_opts.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/parse_opts.c b/lib/parse_opts.c
index a9d50589a3f9..b3ab69c0a539 100644
--- a/lib/parse_opts.c
+++ b/lib/parse_opts.c
@@ -45,7 +45,6 @@
#include "test.h"
#include "ltp_priv.h"
#include "usctest.h"
-#include "tst_clocks.h"
#ifndef UNIT_TEST
#define UNIT_TEST 0
@@ -472,7 +471,7 @@ static uint64_t get_current_time(void)
{
struct timespec ts;
- tst_clock_gettime(CLOCK_MONOTONIC, &ts);
+ clock_gettime(CLOCK_MONOTONIC, &ts);
return (((uint64_t) ts.tv_sec) * USECS_PER_SEC) + ts.tv_nsec / 1000;
}
--
2.25.0.rc1.19.g042ed3e048af
More information about the ltp
mailing list