mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
cpus: Pass CPUState to qemu_cpu_kick()
CPUArchState is no longer needed there. Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
d5a6814697
commit
c08d7424d6
12 changed files with 26 additions and 20 deletions
|
@ -115,7 +115,7 @@ static void spin_kick(void *data)
|
|||
env->halted = 0;
|
||||
env->exception_index = -1;
|
||||
cpu->stopped = false;
|
||||
qemu_cpu_kick(env);
|
||||
qemu_cpu_kick(cpu);
|
||||
}
|
||||
|
||||
static void spin_write(void *opaque, hwaddr addr, uint64_t value,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue