mirror of
https://github.com/mii443/qemu.git
synced 2025-12-16 17:18:49 +00:00
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>
This commit is contained in:
committed by
Marcelo Tosatti
parent
97ffbd8d9d
commit
ec6959d046
4
exec.c
4
exec.c
@@ -1631,7 +1631,7 @@ static void cpu_unlink_tb(CPUState *env)
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
/* mask must never be zero, except for A20 change call */
|
||||
void cpu_interrupt(CPUState *env, int mask)
|
||||
static void tcg_handle_interrupt(CPUState *env, int mask)
|
||||
{
|
||||
int old_mask;
|
||||
|
||||
@@ -1658,6 +1658,8 @@ void cpu_interrupt(CPUState *env, int mask)
|
||||
}
|
||||
}
|
||||
|
||||
CPUInterruptHandler cpu_interrupt_handler = tcg_handle_interrupt;
|
||||
|
||||
#else /* CONFIG_USER_ONLY */
|
||||
|
||||
void cpu_interrupt(CPUState *env, int mask)
|
||||
|
||||
Reference in New Issue
Block a user