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/hw | |
| 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/hw')
| -rw-r--r-- | include/hw/core/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/core/cpu.h b/include/hw/core/cpu.h index 338757e525..6075be0b59 100644 --- a/include/hw/core/cpu.h +++ b/include/hw/core/cpu.h @@ -422,7 +422,7 @@ struct qemu_work_item; * valid under cpu_list_lock. * @created: Indicates whether the CPU thread has been successfully created. * @halt_cond: condition variable sleeping threads can wait on. - * @exit_request: Another thread requests the CPU to call qemu_wait_io_event(). + * @exit_request: Another thread requests the CPU to call qemu_process_cpu_events(). * Should be read only by CPU thread with load-acquire, to synchronize with * other threads' store-release operation. * |