| 14 | #include <unistd.h> |
| 15 | |
| 16 | bool VmPlatform::IsHypervisorPresent() { |
| 17 | return kvm::IsHypervisorPresent(); |
| 18 | } |
| 19 | |
| 20 | std::unique_ptr<HypervisorVm> VmPlatform::CreateHypervisor(uint32_t cpu_count) { |
| 21 | return kvm::KvmVm::Create(cpu_count); |
nothing calls this directly
no test coverage detected