2009-02-26 17:47:11 +00:00
|
|
|
#ifndef _LINUX_TRACE_CLOCK_H
|
|
|
|
#define _LINUX_TRACE_CLOCK_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 3 trace clock variants, with differing scalability/precision
|
|
|
|
* tradeoffs:
|
|
|
|
*
|
|
|
|
* - local: CPU-local trace clock
|
|
|
|
* - medium: scalable global clock with some jitter
|
|
|
|
* - global: globally monotonic, serialized clock
|
|
|
|
*/
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
extern u64 notrace trace_clock_local(void);
|
|
|
|
extern u64 notrace trace_clock(void);
|
|
|
|
extern u64 notrace trace_clock_global(void);
|
2011-09-19 15:35:58 +00:00
|
|
|
extern u64 notrace trace_clock_counter(void);
|
2009-02-26 17:47:11 +00:00
|
|
|
|
|
|
|
#endif /* _LINUX_TRACE_CLOCK_H */
|