https://github.com/torvalds/linux
Raw File
Tip revision: ad81f0545ef01ea651886dddac4bef6cec930092 authored by Linus Torvalds on 14 July 2013, 22:18:27 UTC
Linux 3.11-rc1
Tip revision: ad81f05
timekeeping_internal.h
#ifndef _TIMEKEEPING_INTERNAL_H
#define _TIMEKEEPING_INTERNAL_H
/*
 * timekeeping debug functions
 */
#include <linux/time.h>

#ifdef CONFIG_DEBUG_FS
extern void tk_debug_account_sleep_time(struct timespec *t);
#else
#define tk_debug_account_sleep_time(x)
#endif

#endif /* _TIMEKEEPING_INTERNAL_H */
back to top