cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

vgettimeofday.c (592B)


      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
      9int __vdso_clock_gettime(clockid_t clock,
     10			 struct __kernel_timespec *ts)
     11{
     12	return __cvdso_clock_gettime(clock, ts);
     13}
     14
     15int __vdso_gettimeofday(struct __kernel_old_timeval *tv,
     16			struct timezone *tz)
     17{
     18	return __cvdso_gettimeofday(tv, tz);
     19}
     20
     21int __vdso_clock_getres(clockid_t clock_id,
     22			struct __kernel_timespec *res)
     23{
     24	return __cvdso_clock_getres(clock_id, res);
     25}