diff options
author | Andreas Färber <afaerber@suse.de> | 2013-05-17 18:26:54 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-06-28 13:25:12 +0200 |
commit | 60a3e17a469e444a7bc4d9a14c2ecf3bdb5ec094 (patch) | |
tree | 1b543cad3d08d8f79df37b72554bd01dcce5ebe1 /include | |
parent | cb446ecab714b2444a270be209e0533bcd2ee534 (diff) |
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')
-rw-r--r-- | include/exec/cpu-all.h | 2 | ||||
-rw-r--r-- | include/qom/cpu.h | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h index e9c3717863..e1cc62ef5e 100644 --- a/include/exec/cpu-all.h +++ b/include/exec/cpu-all.h @@ -421,8 +421,6 @@ DECLARE_TLS(CPUArchState *,cpu_single_env); | CPU_INTERRUPT_TGT_EXT_3 \ | CPU_INTERRUPT_TGT_EXT_4) -void cpu_exit(CPUArchState *s); - /* Breakpoint/watchpoint flags */ #define BP_MEM_READ 0x01 #define BP_MEM_WRITE 0x02 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. * |