diff options
| author | Andreas Färber | 2013-05-17 18:26:54 +0200 |
|---|---|---|
| committer | Andreas Färber | 2013-06-28 13:25:12 +0200 |
| commit | 60a3e17a469e444a7bc4d9a14c2ecf3bdb5ec094 (patch) | |
| tree | 1b543cad3d08d8f79df37b72554bd01dcce5ebe1 /include/qom | |
| parent | kvm: Change cpu_synchronize_state() argument to CPUState (diff) | |
| download | qemu-60a3e17a469e444a7bc4d9a14c2ecf3bdb5ec094.tar.gz qemu-60a3e17a469e444a7bc4d9a14c2ecf3bdb5ec094.tar.xz qemu-60a3e17a469e444a7bc4d9a14c2ecf3bdb5ec094.zip | |
cpu: Change cpu_exit() argument to CPUState
It no longer depends on CPUArchState, so move it to qom/cpu.c.
Prepares for changing GDBState::c_cpu to CPUState.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'include/qom')
| -rw-r--r-- | include/qom/cpu.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/qom/cpu.h b/include/qom/cpu.h index 3e8cc479bd..3494356d67 100644 --- a/include/qom/cpu.h +++ b/include/qom/cpu.h @@ -371,6 +371,14 @@ void cpu_interrupt(CPUState *cpu, int mask); void cpu_reset_interrupt(CPUState *cpu, int mask); /** + * cpu_exit: + * @cpu: The CPU to exit. + * + * Requests the CPU @cpu to exit execution. + */ +void cpu_exit(CPUState *cpu); + +/** * cpu_resume: * @cpu: The CPU to resume. * |
