diff options
author | Andreas Färber <afaerber@suse.de> | 2013-09-03 02:12:23 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2014-03-13 19:20:48 +0100 |
commit | 0ea8cb8895a9f9adea89fb202984dcd9e890e504 (patch) | |
tree | 54f751cd1568e87b1d750dc1d80b5f03ce61edb3 /include/exec | |
parent | b3310ab3380995af2c640a3ffd82f6e7b352c9e6 (diff) | |
download | hqemu-0ea8cb8895a9f9adea89fb202984dcd9e890e504.zip hqemu-0ea8cb8895a9f9adea89fb202984dcd9e890e504.tar.gz |
cpu-exec: Change cpu_resume_from_signal() argument to CPUState
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'include/exec')
-rw-r--r-- | include/exec/exec-all.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index a3e7faa..01b8eba 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -83,7 +83,7 @@ int cpu_gen_code(CPUArchState *env, struct TranslationBlock *tb, bool cpu_restore_state(CPUState *cpu, uintptr_t searched_pc); void page_size_init(void); -void QEMU_NORETURN cpu_resume_from_signal(CPUArchState *env1, void *puc); +void QEMU_NORETURN cpu_resume_from_signal(CPUState *cpu, void *puc); void QEMU_NORETURN cpu_io_recompile(CPUState *cpu, uintptr_t retaddr); TranslationBlock *tb_gen_code(CPUState *cpu, target_ulong pc, target_ulong cs_base, int flags, |