diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2021-03-12 17:28:13 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2021-03-17 07:17:46 +0000 |
commit | c4f19122d998c875363ab42adf491a416ae79ed0 (patch) | |
tree | c65a93c0c4a440c56718db4189150a1d4d90be25 | |
parent | 1caa8d9f2c38464242f9cf366cdc25b78d8308b4 (diff) | |
download | qemu-c4f19122d998c875363ab42adf491a416ae79ed0.zip qemu-c4f19122d998c875363ab42adf491a416ae79ed0.tar.gz qemu-c4f19122d998c875363ab42adf491a416ae79ed0.tar.bz2 |
plugins: expand the callback typedef kernel-docs
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20210312172821.31647-7-alex.bennee@linaro.org>
-rw-r--r-- | include/qemu/qemu-plugin.h | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/include/qemu/qemu-plugin.h b/include/qemu/qemu-plugin.h index ac1bb31..09b235f 100644 --- a/include/qemu/qemu-plugin.h +++ b/include/qemu/qemu-plugin.h @@ -99,17 +99,36 @@ QEMU_PLUGIN_EXPORT int qemu_plugin_install(qemu_plugin_id_t id, const qemu_info_t *info, int argc, char **argv); -/* - * Prototypes for the various callback styles we will be registering - * in the following functions. +/** + * typedef qemu_plugin_simple_cb_t - simple callback + * @id: the unique qemu_plugin_id_t + * + * This call-back passes no information aside from the unique @id. */ typedef void (*qemu_plugin_simple_cb_t)(qemu_plugin_id_t id); +/** + * typedef qemu_plugin_udata_cb_t - callback with user data + * @id: the unique qemu_plugin_id_t + * @userdata: a pointer to some user data supplied when the call-back + * was registered. + */ typedef void (*qemu_plugin_udata_cb_t)(qemu_plugin_id_t id, void *userdata); +/** + * typedef qemu_plugin_vcpu_simple_cb_t - vcpu callback + * @id: the unique qemu_plugin_id_t + * @vcpu_index: the current vcpu context + */ typedef void (*qemu_plugin_vcpu_simple_cb_t)(qemu_plugin_id_t id, unsigned int vcpu_index); +/** + * typedef qemu_plugin_vcpu_udata_cb_t - vcpu callback + * @vcpu_index: the current vcpu context + * @userdata: a pointer to some user data supplied when the call-back + * was registered. + */ typedef void (*qemu_plugin_vcpu_udata_cb_t)(unsigned int vcpu_index, void *userdata); |