diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2011-04-13 01:32:56 +0200 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2011-05-02 09:38:35 -0300 |
commit | ec6959d0466fb240fe4d94d5f525eebf9ba18b84 (patch) | |
tree | 7e9c62ca8ca6bcae7459c819f11252c75271b7c6 /cpu-all.h | |
parent | 97ffbd8d9d54736dd73227e5330c7f5cdc2d7a96 (diff) | |
download | qemu-ec6959d0466fb240fe4d94d5f525eebf9ba18b84.tar.gz qemu-ec6959d0466fb240fe4d94d5f525eebf9ba18b84.tar.bz2 qemu-ec6959d0466fb240fe4d94d5f525eebf9ba18b84.zip |
Redirect cpu_interrupt to callback handler
This allows to override the interrupt handling of QEMU in system mode.
KVM will make use of it to set a specialized handler.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'cpu-all.h')
-rw-r--r-- | cpu-all.h | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -799,7 +799,19 @@ extern CPUState *cpu_single_env; #define CPU_INTERRUPT_SIPI 0x800 /* SIPI pending. */ #define CPU_INTERRUPT_MCE 0x1000 /* (x86 only) MCE pending. */ -void cpu_interrupt(CPUState *s, int mask); +#ifndef CONFIG_USER_ONLY +typedef void (*CPUInterruptHandler)(CPUState *, int); + +extern CPUInterruptHandler cpu_interrupt_handler; + +static inline void cpu_interrupt(CPUState *s, int mask) +{ + cpu_interrupt_handler(s, mask); +} +#else /* USER_ONLY */ +void cpu_interrupt(CPUState *env, int mask); +#endif /* USER_ONLY */ + void cpu_reset_interrupt(CPUState *env, int mask); void cpu_exit(CPUState *s); |