timekeeping_internal.h 301 B

1234567891011121314
  1. #ifndef _TIMEKEEPING_INTERNAL_H
  2. #define _TIMEKEEPING_INTERNAL_H
  3. /*
  4. * timekeeping debug functions
  5. */
  6. #include <linux/time.h>
  7. #ifdef CONFIG_DEBUG_FS
  8. extern void tk_debug_account_sleep_time(struct timespec *t);
  9. #else
  10. #define tk_debug_account_sleep_time(x)
  11. #endif
  12. #endif /* _TIMEKEEPING_INTERNAL_H */