1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-07-04 02:01:58 +00:00

Even more cleanup

This commit is contained in:
momo5502
2022-04-03 14:22:03 +02:00
parent 17e10a93ea
commit 01ed54e8a2
5 changed files with 110 additions and 136 deletions

View File

@ -21,7 +21,7 @@ public:
private:
uint32_t vm_state_count_{0};
vmx::vm_state** vm_states_{nullptr};
vmx::state** vm_states_{nullptr};
void enable_core(uint64_t system_directory_table_base);
bool try_enable_core(uint64_t system_directory_table_base);
@ -30,5 +30,5 @@ private:
void allocate_vm_states();
void free_vm_states();
vmx::vm_state* get_current_vm_state() const;
vmx::state* get_current_vm_state() const;
};