1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * LoongArch userspace implementations of gettimeofday() and similar. 4 * 5 * Copyright (C) 2020-2022 Loongson Technology Corporation Limited 6 */ 7 #include <linux/types.h> 8 9 extern 10 int __vdso_clock_gettime(clockid_t clock, struct __kernel_timespec *ts); 11 int __vdso_clock_gettime(clockid_t clock, struct __kernel_timespec *ts) 12 { 13 return __cvdso_clock_gettime(clock, ts); 14 } 15 16 extern 17 int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz); 18 int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz) 19 { 20 return __cvdso_gettimeofday(tv, tz); 21 } 22 23 extern 24 int __vdso_clock_getres(clockid_t clock_id, struct __kernel_timespec *res); 25 int __vdso_clock_getres(clockid_t clock_id, struct __kernel_timespec *res) 26 { 27 return __cvdso_clock_getres(clock_id, res); 28 } 29