Blame view

kernel/time/ntp_internal.h 536 Bytes
aa6f9c595   John Stultz   ntp: Move do_adjt...
1
2
3
4
5
6
7
  #ifndef _LINUX_NTP_INTERNAL_H
  #define _LINUX_NTP_INTERNAL_H
  
  extern void ntp_init(void);
  extern void ntp_clear(void);
  /* Returns how long ticks are at present, in ns / 2^NTP_SCALE_SHIFT. */
  extern u64 ntp_tick_length(void);
833f32d76   John Stultz   time: Prevent ear...
8
  extern ktime_t ntp_get_next_leap(void);
c79634877   DengChao   ntp: Fix second_o...
9
  extern int second_overflow(time64_t secs);
e4085693f   John Stultz   ntp: Move timex v...
10
  extern int ntp_validate_timex(struct timex *);
7d489d15c   John Stultz   timekeeping: Conv...
11
  extern int __do_adjtimex(struct timex *, struct timespec64 *, s32 *);
7ec88e4be   Arnd Bergmann   ntp/pps: use time...
12
  extern void __hardpps(const struct timespec64 *, const struct timespec64 *);
aa6f9c595   John Stultz   ntp: Move do_adjt...
13
  #endif /* _LINUX_NTP_INTERNAL_H */