mirror of
https://github.com/momo5502/hypervisor.git
synced 2025-07-04 02:01:58 +00:00
More cleanup and hypervisor progress
This commit is contained in:
@ -1,5 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "vmx.hpp"
|
||||
|
||||
class hypervisor
|
||||
{
|
||||
public:
|
||||
@ -12,8 +14,10 @@ public:
|
||||
hypervisor(const hypervisor& obj) = delete;
|
||||
hypervisor& operator=(const hypervisor& obj) = delete;
|
||||
|
||||
void on_sleep();
|
||||
void on_wakeup();
|
||||
void enable();
|
||||
void disable();
|
||||
|
||||
private:
|
||||
};
|
||||
void enable_core();
|
||||
void disable_core();
|
||||
};
|
||||
|
Reference in New Issue
Block a user