[LTP] [PATCH 1/5] tst_safe_clocks: Remove safe_clock_adjtime()
Viresh Kumar
viresh.kumar@linaro.org
Tue May 19 10:51:08 CEST 2020
safe_clock_adjtime() isn't used anymore, remove it.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
include/tst_safe_clocks.h | 18 ------------------
1 file changed, 18 deletions(-)
diff --git a/include/tst_safe_clocks.h b/include/tst_safe_clocks.h
index 27e8bda45589..4cb5f41ed82f 100644
--- a/include/tst_safe_clocks.h
+++ b/include/tst_safe_clocks.h
@@ -55,21 +55,6 @@ static inline void safe_clock_settime(const char *file, const int lineno,
}
}
-static inline int safe_clock_adjtime(const char *file, const int lineno,
- clockid_t clk_id, struct timex *txc)
-{
- int rval;
-
- rval = tst_syscall(__NR_clock_adjtime, clk_id, txc);
- if (rval < 0) {
- tst_brk(TBROK | TERRNO,
- "%s:%d clock_adjtime(%s) failed %i",
- file, lineno, tst_clock_name(clk_id), rval);
- }
-
- return rval;
-}
-
#define SAFE_CLOCK_GETRES(clk_id, res)\
safe_clock_getres(__FILE__, __LINE__, (clk_id), (res))
@@ -79,7 +64,4 @@ static inline int safe_clock_adjtime(const char *file, const int lineno,
#define SAFE_CLOCK_SETTIME(clk_id, tp)\
safe_clock_settime(__FILE__, __LINE__, (clk_id), (tp))
-#define SAFE_CLOCK_ADJTIME(clk_id, txc)\
- safe_clock_adjtime(__FILE__, __LINE__, (clk_id), (txc))
-
#endif /* SAFE_CLOCKS_H__ */
--
2.25.0.rc1.19.g042ed3e048af
More information about the ltp
mailing list