mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-08 16:07:39 -06:00
exec: Change cpu_memory_rw_debug() argument to CPUState
Propagate X86CPU in kvmvapic for simplicity. Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
00b941e581
commit
f17ec444c3
13 changed files with 77 additions and 73 deletions
|
@ -46,7 +46,7 @@
|
|||
static inline int target_memory_rw_debug(CPUArchState *env, target_ulong addr,
|
||||
uint8_t *buf, int len, int is_write)
|
||||
{
|
||||
return cpu_memory_rw_debug(env, addr, buf, len, is_write);
|
||||
return cpu_memory_rw_debug(ENV_GET_CPU(env), addr, buf, len, is_write);
|
||||
}
|
||||
#else
|
||||
/* target_memory_rw_debug() defined in cpu.h */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue