From 9585db68c78b538e4d835372da3c5675fe0608da Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Sat, 13 Sep 2014 09:45:17 -0700 Subject: qom: Add cpu_exec_interrupt hook MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Continuing the removal of ifdefs from cpu_exec. Cc: Andreas Färber Signed-off-by: Richard Henderson Reviewed-by: Max Filippov Reviewed-by: Alex Bennée Message-id: 1410626734-3804-7-git-send-email-rth@twiddle.net Signed-off-by: Peter Maydell --- include/qom/cpu.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/qom') diff --git a/include/qom/cpu.h b/include/qom/cpu.h index 0340cf4..f576b47 100644 --- a/include/qom/cpu.h +++ b/include/qom/cpu.h @@ -101,6 +101,7 @@ struct TranslationBlock; * @gdb_core_xml_file: File name for core registers GDB XML description. * @cpu_exec_enter: Callback for cpu_exec preparation. * @cpu_exec_exit: Callback for cpu_exec cleanup. + * @cpu_exec_interrupt: Callback for processing interrupts in cpu_exec. * * Represents a CPU family or model. */ @@ -154,6 +155,7 @@ typedef struct CPUClass { void (*cpu_exec_enter)(CPUState *cpu); void (*cpu_exec_exit)(CPUState *cpu); + bool (*cpu_exec_interrupt)(CPUState *cpu, int interrupt_request); } CPUClass; #ifdef HOST_WORDS_BIGENDIAN -- cgit v1.1