From 5357406415571b3f03d05b60a143afdea2b9b1b9 Mon Sep 17 00:00:00 2001 From: Dunrong Huang Date: Sun, 31 Mar 2013 09:35:53 +0800 Subject: target-moxie: set do_interrupt to a target-specific helper function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The value of "do_interrupt" member of CPUClass shoule be set to a target-specific function, or it will lead to a segfault like below: $ moxie-softmmu/qemu-system-moxie -M moxiesim Segmentation fault Cc: Anthony Green Cc: Blue Swirl Cc: Andreas Färber Signed-off-by: Dunrong Huang Signed-of-by: Anthony Green Reviewed-by: Andreas Färber Signed-off-by: Blue Swirl --- target-moxie/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target-moxie/cpu.h') diff --git a/target-moxie/cpu.h b/target-moxie/cpu.h index b96236f76e..988729a06f 100644 --- a/target-moxie/cpu.h +++ b/target-moxie/cpu.h @@ -117,7 +117,7 @@ static inline MoxieCPU *moxie_env_get_cpu(CPUMoxieState *env) MoxieCPU *cpu_moxie_init(const char *cpu_model); int cpu_moxie_exec(CPUMoxieState *s); -void do_interrupt(CPUMoxieState *env); +void moxie_cpu_do_interrupt(CPUState *cs); void moxie_translate_init(void); int cpu_moxie_signal_handler(int host_signum, void *pinfo, void *puc); -- cgit v1.2.3