diff options
author | Stefan Weil <weil@mail.berlios.de> | 2011-04-18 06:39:53 +0000 |
---|---|---|
committer | Stefan Weil <weil@mail.berlios.de> | 2011-04-20 10:37:03 +0200 |
commit | 883555fe1885899e2b9f29664a578f5aa1817c98 (patch) | |
tree | f9d4131c1bfee51372cbc01aca7bf89505c57a84 /exec-all.h | |
parent | bb87a35c853d5d2fe6d29354d2ac45b361119201 (diff) | |
download | qemu-883555fe1885899e2b9f29664a578f5aa1817c98.tar.gz qemu-883555fe1885899e2b9f29664a578f5aa1817c98.tar.bz2 qemu-883555fe1885899e2b9f29664a578f5aa1817c98.zip |
Remove unused function parameter from cpu_restore_state
The previous patch removed the need for parameter puc.
Is is now unused, so remove it.
Cc: Aurelien Jarno <aurelien@aurel32.net>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Diffstat (limited to 'exec-all.h')
-rw-r--r-- | exec-all.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/exec-all.h b/exec-all.h index 29fd322347..7c2d29ff98 100644 --- a/exec-all.h +++ b/exec-all.h @@ -84,8 +84,7 @@ void cpu_gen_init(void); int cpu_gen_code(CPUState *env, struct TranslationBlock *tb, int *gen_code_size_ptr); int cpu_restore_state(struct TranslationBlock *tb, - CPUState *env, unsigned long searched_pc, - void *puc); + CPUState *env, unsigned long searched_pc); void cpu_resume_from_signal(CPUState *env1, void *puc); void cpu_io_recompile(CPUState *env, void *retaddr); TranslationBlock *tb_gen_code(CPUState *env, |