diff options
| author | Aurelien Jarno <aurelien@aurel32.net> | 2009-09-30 14:09:52 +0200 |
|---|---|---|
| committer | Aurelien Jarno <aurelien@aurel32.net> | 2009-09-30 14:11:08 +0200 |
| commit | e9a6625e8dc03f18d5a7271eeb933203122ac659 (patch) | |
| tree | 42f6e49843431b24be71069e0470ee1429d1ddb8 | |
| parent | 6692b043198d58a12317009edb98654c6839f043 (diff) | |
| download | focaccia-qemu-e9a6625e8dc03f18d5a7271eeb933203122ac659.tar.gz focaccia-qemu-e9a6625e8dc03f18d5a7271eeb933203122ac659.zip | |
Fix build with profiler enabled
Broken by 4a1418e07bdcfaa3177739e04707ecaec75d89e1 Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
| -rw-r--r-- | monitor.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/monitor.c b/monitor.c index 167041e448..f105a2ec1b 100644 --- a/monitor.c +++ b/monitor.c @@ -1456,6 +1456,9 @@ static void do_info_numa(Monitor *mon) #ifdef CONFIG_PROFILER +int64_t qemu_time; +int64_t dev_time; + static void do_info_profile(Monitor *mon) { int64_t total; |