diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2025-09-02 07:17:09 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-09-17 19:00:55 +0200 |
| commit | 871de7078fcaf597605576b97b32fab14722ea43 (patch) | |
| tree | cb94d0364754fe88f36b1ee4c604b40f5c2c9ff6 /include/system/cpus.h | |
| parent | f8217ae54e4c44a7f0d20d56a5368ec1818f1cc2 (diff) | |
| download | focaccia-qemu-871de7078fcaf597605576b97b32fab14722ea43.tar.gz focaccia-qemu-871de7078fcaf597605576b97b32fab14722ea43.zip | |
treewide: rename qemu_wait_io_event/qemu_wait_io_event_common
Do so before extending it to the user-mode emulators, where there is no such thing as an "I/O thread". Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/system/cpus.h')
| -rw-r--r-- | include/system/cpus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/system/cpus.h b/include/system/cpus.h index 69be6a77a7..4aebec4870 100644 --- a/include/system/cpus.h +++ b/include/system/cpus.h @@ -17,8 +17,8 @@ bool cpu_work_list_empty(CPUState *cpu); bool cpu_thread_is_idle(CPUState *cpu); bool all_cpu_threads_idle(void); bool cpu_can_run(CPUState *cpu); -void qemu_wait_io_event_common(CPUState *cpu); -void qemu_wait_io_event(CPUState *cpu); +void qemu_process_cpu_events_common(CPUState *cpu); +void qemu_process_cpu_events(CPUState *cpu); void cpu_thread_signal_created(CPUState *cpu); void cpu_thread_signal_destroyed(CPUState *cpu); void cpu_handle_guest_debug(CPUState *cpu); |