vgettimeofday.c 536 B

12345678910111213141516171819202122232425
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * ARM64 userspace implementations of gettimeofday() and similar.
  4. *
  5. * Copyright (C) 2018 ARM Limited
  6. *
  7. */
  8. int __kernel_clock_gettime(clockid_t clock,
  9. struct __kernel_timespec *ts)
  10. {
  11. return __cvdso_clock_gettime(clock, ts);
  12. }
  13. int __kernel_gettimeofday(struct __kernel_old_timeval *tv,
  14. struct timezone *tz)
  15. {
  16. return __cvdso_gettimeofday(tv, tz);
  17. }
  18. int __kernel_clock_getres(clockid_t clock_id,
  19. struct __kernel_timespec *res)
  20. {
  21. return __cvdso_clock_getres(clock_id, res);
  22. }