pub type SyscallCallback = qemu_plugin_vcpu_syscall_cb_t;Expand description
A callback called on Syscall entry
§Arguments
id: The plugin IDvcpu_index: The index of the vCPU that executed the instructionnum: The syscall numbera1: The first syscall argumenta2: The second syscall argumenta3: The third syscall argumenta4: The fourth syscall argumenta5: The fifth syscall argumenta6: The sixth syscall argumenta7: The seventh syscall argumenta8: The eighth syscall argument
Aliased Type§
pub enum SyscallCallback {
None,
Some(unsafe extern "C" fn(u64, u32, i64, u64, u64, u64, u64, u64, u64, u64, u64)),
}