diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2025-08-29 16:53:05 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-09-17 19:00:56 +0200 |
| commit | 758e5de501f78d4ef53a43e0c5a4783cd807b5be (patch) | |
| tree | 3d543c115e9a4fe491f175bab70f55820d966896 /include/hw/core/cpu.h | |
| parent | 871de7078fcaf597605576b97b32fab14722ea43 (diff) | |
| download | focaccia-qemu-758e5de501f78d4ef53a43e0c5a4783cd807b5be.tar.gz focaccia-qemu-758e5de501f78d4ef53a43e0c5a4783cd807b5be.zip | |
bsd-user, linux-user: introduce qemu_process_cpu_events
Add a user-mode emulation version of the function. More will be added later, for now it is just process_queued_cpu_work. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/core/cpu.h')
| -rw-r--r-- | include/hw/core/cpu.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/hw/core/cpu.h b/include/hw/core/cpu.h index 6075be0b59..fb788ca110 100644 --- a/include/hw/core/cpu.h +++ b/include/hw/core/cpu.h @@ -1145,6 +1145,15 @@ AddressSpace *cpu_get_address_space(CPUState *cpu, int asidx); G_NORETURN void cpu_abort(CPUState *cpu, const char *fmt, ...) G_GNUC_PRINTF(2, 3); +/** + * qemu_process_cpu_events: + * @cpu: CPU that left the execution loop + * + * Perform accelerator-independent work after the CPU has left + * the inner execution loop. + */ +void qemu_process_cpu_events(CPUState *cpu); + /* $(top_srcdir)/cpu.c */ void cpu_class_init_props(DeviceClass *dc); void cpu_exec_class_post_init(CPUClass *cc); |