MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vm_exit_debug

Function vm_exit_debug

freebsd/amd64/vmm/vmm.c:1651–1660  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1649}
1650
1651void
1652vm_exit_debug(struct vm *vm, int vcpuid, uint64_t rip)
1653{
1654 struct vm_exit *vmexit;
1655
1656 vmexit = vm_exitinfo(vm, vcpuid);
1657 vmexit->rip = rip;
1658 vmexit->inst_length = 0;
1659 vmexit->exitcode = VM_EXITCODE_DEBUG;
1660}
1661
1662void
1663vm_exit_rendezvous(struct vm *vm, int vcpuid, uint64_t rip)

Callers 2

svm_runFunction · 0.85
vmx_runFunction · 0.85

Calls 1

vm_exitinfoFunction · 0.85

Tested by

no test coverage detected