diff options
author | Stefan Weil <sw@weilnetz.de> | 2012-04-07 17:58:33 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-04-07 18:51:57 +0000 |
commit | 38c30fb7a534da82371311ca7a56f2141008b2a5 (patch) | |
tree | fefb9489a1ce4ebffdd5bf4922e37daf97a05018 | |
parent | 5cbdb3a34bce4ee64dd203cfd74979409fa3d51e (diff) |
Add QEMU_NORETURN to function cpu_resume_from_signal
cpu_resume_from_signal terminates by calling longjmp.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r-- | exec-all.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exec-all.h b/exec-all.h index a6d6519891..4758d88c77 100644 --- a/exec-all.h +++ b/exec-all.h @@ -86,7 +86,7 @@ int cpu_gen_code(CPUArchState *env, struct TranslationBlock *tb, int *gen_code_size_ptr); int cpu_restore_state(struct TranslationBlock *tb, CPUArchState *env, uintptr_t searched_pc); -void cpu_resume_from_signal(CPUArchState *env1, void *puc); +void QEMU_NORETURN cpu_resume_from_signal(CPUArchState *env1, void *puc); void cpu_io_recompile(CPUArchState *env, void *retaddr); TranslationBlock *tb_gen_code(CPUArchState *env, target_ulong pc, target_ulong cs_base, int flags, |