From: Andreas Färber Date: Sat, 25 Feb 2012 03:29:56 +0000 (+0100) Subject: bsd-user: Don't overuse CPUState X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~4366^2~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b98e9ca8bb38c4a80af458dd16c906f36ce50112;p=sdk%2Femulator%2Fqemu.git bsd-user: Don't overuse CPUState Use CPU*State where applicable. Signed-off-by: Andreas Färber --- diff --git a/bsd-user/main.c b/bsd-user/main.c index c3af395..78533d5 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -63,7 +63,7 @@ void gemu_log(const char *fmt, ...) } #if defined(TARGET_I386) -int cpu_get_pic_interrupt(CPUState *env) +int cpu_get_pic_interrupt(CPUX86State *env) { return -1; } @@ -109,7 +109,7 @@ void cpu_list_unlock(void) /***********************************************************/ /* CPUX86 core interface */ -void cpu_smm_update(CPUState *env) +void cpu_smm_update(CPUX86State *env) { }