mirror of https://github.com/xemu-project/xemu.git
bsd-user: Don't overuse CPUState
Use CPU*State where applicable. Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
c91dcf0b81
commit
b98e9ca8bb
|
@ -63,7 +63,7 @@ void gemu_log(const char *fmt, ...)
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(TARGET_I386)
|
#if defined(TARGET_I386)
|
||||||
int cpu_get_pic_interrupt(CPUState *env)
|
int cpu_get_pic_interrupt(CPUX86State *env)
|
||||||
{
|
{
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
@ -109,7 +109,7 @@ void cpu_list_unlock(void)
|
||||||
/***********************************************************/
|
/***********************************************************/
|
||||||
/* CPUX86 core interface */
|
/* CPUX86 core interface */
|
||||||
|
|
||||||
void cpu_smm_update(CPUState *env)
|
void cpu_smm_update(CPUX86State *env)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue