This source file includes following definitions.
- __kernel_clock_gettime
- __kernel_gettimeofday
- __kernel_clock_getres
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 #include <linux/time.h>
   9 #include <linux/types.h>
  10 
  11 int __kernel_clock_gettime(clockid_t clock,
  12                            struct __kernel_timespec *ts)
  13 {
  14         return __cvdso_clock_gettime(clock, ts);
  15 }
  16 
  17 int __kernel_gettimeofday(struct __kernel_old_timeval *tv,
  18                           struct timezone *tz)
  19 {
  20         return __cvdso_gettimeofday(tv, tz);
  21 }
  22 
  23 int __kernel_clock_getres(clockid_t clock_id,
  24                           struct __kernel_timespec *res)
  25 {
  26         return __cvdso_clock_getres(clock_id, res);
  27 }