qemu_plugin_uninstall

Function qemu_plugin_uninstall 

Source
pub unsafe extern "C" fn qemu_plugin_uninstall(
    id: u64,
    cb: Option<unsafe extern "C" fn(u64)>,
)
Expand description

qemu_plugin_uninstall() - Uninstall a plugin @id: this plugin’s opaque ID @cb: callback to be called once the plugin has been removed

Do NOT assume that the plugin has been uninstalled once this function returns. Plugins are uninstalled asynchronously, and therefore the given plugin receives callbacks until @cb is called.

Note: Calling this function from qemu_plugin_install() is a bug.