From f7493496873cee2c0a788b5c7e658390030e9246 Mon Sep 17 00:00:00 2001 From: Pierrick Bouvier Date: Fri, 20 Dec 2024 13:30:28 -0800 Subject: [PATCH] fix doc Signed-off-by: Pierrick Bouvier --- include/qemu/qemu-plugin.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/qemu/qemu-plugin.h b/include/qemu/qemu-plugin.h index f998a465e5cd5..50e7f95f57002 100644 --- a/include/qemu/qemu-plugin.h +++ b/include/qemu/qemu-plugin.h @@ -180,6 +180,7 @@ enum qemu_plugin_discon_type { * typedef qemu_plugin_vcpu_discon_cb_t - vcpu discontinuity callback * @vcpu_index: the current vcpu context * @type: the type of discontinuity + * @id: id * @from_pc: the source of the discontinuity, e.g. the PC before the * transition * @to_pc: the PC pointing to the next instruction to be executed @@ -277,6 +278,7 @@ void qemu_plugin_register_vcpu_resume_cb(qemu_plugin_id_t id, * qemu_plugin_register_vcpu_discon_cb() - register a discontinuity callback * @id: plugin ID * @cb: callback function + * @type: type * * The @cb function is called every time a vCPU receives a discontinuity event * of the specified type(s), after the vCPU was prepared to handle the event.