diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-19 10:18:01 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-19 10:18:01 +0000 |
commit | 4530f89f677dbcf231dc536c2f254e7d590fa859 (patch) | |
tree | 64bfaf3d5589c87ab9b35055a2ffa00f51d5b104 /monitor.c | |
parent | 1836a2cc5e693dd55ee8311abfff81bd066a9bfb (diff) | |
download | qemu-4530f89f677dbcf231dc536c2f254e7d590fa859.tar.gz qemu-4530f89f677dbcf231dc536c2f254e7d590fa859.tar.bz2 qemu-4530f89f677dbcf231dc536c2f254e7d590fa859.zip |
kqemu: merge CONFIG_KQEMU and USE_KQEMU
Basically a recursive ":%s/USE_KQEMU/CONFIG_KQEMU/g".
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7189 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1368,7 +1368,7 @@ static void tlb_info(Monitor *mon) static void do_info_kqemu(Monitor *mon) { -#ifdef USE_KQEMU +#ifdef CONFIG_KQEMU CPUState *env; int val; val = 0; @@ -1445,7 +1445,7 @@ static void do_info_profile(Monitor *mon) kqemu_ret_int_count = 0; kqemu_ret_excp_count = 0; kqemu_ret_intr_count = 0; -#ifdef USE_KQEMU +#ifdef CONFIG_KQEMU kqemu_record_dump(); #endif } |