blob: efa931c5cef145e354fd290cf0794bccb7446247 [file] [log] [blame]
Russell King112f38a42010-12-15 19:23:07 +00001/*
2 * sched_clock.h: support for extending counters to full 64-bit ns counter
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
Stephen Boyd38ff87f2013-06-01 23:39:40 -07008#ifndef LINUX_SCHED_CLOCK
9#define LINUX_SCHED_CLOCK
Russell King112f38a42010-12-15 19:23:07 +000010
Stephen Boyd38ff87f2013-06-01 23:39:40 -070011#ifdef CONFIG_GENERIC_SCHED_CLOCK
Russell King211baa702011-01-11 16:23:04 +000012extern void sched_clock_postinit(void);
Stephen Boyd38ff87f2013-06-01 23:39:40 -070013#else
14static inline void sched_clock_postinit(void) { }
15#endif
16
Stephen Boyde7e3ff12013-07-18 16:21:17 -070017extern void sched_clock_register(u64 (*read)(void), int bits,
18 unsigned long rate);
Russell King211baa702011-01-11 16:23:04 +000019
Russell King112f38a42010-12-15 19:23:07 +000020#endif