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 /bsd-user/riscv/target_arch_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 'bsd-user/riscv/target_arch_cpu.h')
| -rw-r--r-- | bsd-user/riscv/target_arch_cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bsd-user/riscv/target_arch_cpu.h b/bsd-user/riscv/target_arch_cpu.h index ef92f00480..ad428d0263 100644 --- a/bsd-user/riscv/target_arch_cpu.h +++ b/bsd-user/riscv/target_arch_cpu.h @@ -49,7 +49,7 @@ static inline G_NORETURN void target_cpu_loop(CPURISCVState *env) cpu_exec_start(cs); trapnr = cpu_exec(cs); cpu_exec_end(cs); - process_queued_cpu_work(cs); + qemu_process_cpu_events(cs); signo = 0; |