1 // SPDX-License-Identifier: GPL-2.0
3 * ARM64 userspace implementations of gettimeofday() and similar.
5 * Copyright (C) 2018 ARM Limited
8 #include <linux/time.h>
9 #include <linux/types.h>
11 int __kernel_clock_gettime(clockid_t clock
,
12 struct __kernel_timespec
*ts
)
14 return __cvdso_clock_gettime(clock
, ts
);
17 int __kernel_gettimeofday(struct __kernel_old_timeval
*tv
,
20 return __cvdso_gettimeofday(tv
, tz
);
23 int __kernel_clock_getres(clockid_t clock_id
,
24 struct __kernel_timespec
*res
)
26 return __cvdso_clock_getres(clock_id
, res
);