From 2d8ebcf94ee461dea9eb363be7becb769d9a962f Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Sat, 17 Apr 2010 16:25:10 +0000 Subject: Fix --enable-profiler compilation. There's a header file inclusion ordering problem between cpu-all.h and qemu-timer.h, such that cpu_get_real_ticks is not defined when we attempt to use it in profile_getclock. Signed-off-by: Richard Henderson Signed-off-by: Blue Swirl --- qemu-timer.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'qemu-timer.h') diff --git a/qemu-timer.h b/qemu-timer.h index d2e15f4caa..62da887584 100644 --- a/qemu-timer.h +++ b/qemu-timer.h @@ -236,4 +236,15 @@ static inline int can_do_io(CPUState *env) } #endif +#ifdef CONFIG_PROFILER +static inline int64_t profile_getclock(void) +{ + return cpu_get_real_ticks(); +} + +extern int64_t qemu_time, qemu_time_start; +extern int64_t tlb_flush_time; +extern int64_t dev_time; +#endif + #endif -- cgit 1.4.1