1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-07-03 17:51:52 +00:00

Prepare vm states

This commit is contained in:
momo5502
2022-03-27 11:20:46 +02:00
parent 8fcaaf5cbf
commit dd6e296ea5
4 changed files with 92 additions and 2 deletions

View File

@ -18,6 +18,13 @@ public:
void disable();
private:
vmx::vm_state* vm_states_{nullptr};
void enable_core();
void disable_core();
void allocate_vm_states();
void free_vm_states();
vmx::vm_state* get_current_vm_state() const;
};