1 // SPDX-License-Identifier: GPL-2.0 1 2 /* 3 * Copied from arch/arm64/kernel/vdso/vgettime 4 * 5 * Copyright (C) 2018 ARM Ltd. 6 * Copyright (C) 2020 SiFive 7 */ 8 9 #include <linux/time.h> 10 #include <linux/types.h> 11 #include <vdso/gettime.h> 12 13 int __vdso_clock_gettime(clockid_t clock, stru 14 { 15 return __cvdso_clock_gettime(clock, ts 16 } 17 18 int __vdso_gettimeofday(struct __kernel_old_ti 19 { 20 return __cvdso_gettimeofday(tv, tz); 21 } 22 23 int __vdso_clock_getres(clockid_t clock_id, st 24 { 25 return __cvdso_clock_getres(clock_id, 26 } 27
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.