You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
340 B
13 lines
340 B
4 years ago
|
#pragma once
|
||
|
#include "hv_types.hpp"
|
||
|
|
||
|
namespace vmxon
|
||
|
{
|
||
|
auto create_vmxon_region(hv::pvcpu_ctx vcpu_ctx) -> void;
|
||
|
auto create_vmcs(hv::pvcpu_ctx vcpu_ctx) -> void;
|
||
|
auto create_vcpus(hv::pvmx_ctx vmx_ctx) -> void;
|
||
|
auto init_vmxon() -> void;
|
||
|
|
||
|
// vmxroot global object... contains all vcpu information...
|
||
|
inline hv::pvmx_ctx g_vmx_ctx;
|
||
|
}
|