summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/HALKit/AMD64/Hypervisor.h
blob: 6bb0b058279b4d1321edbd5d4d4e8798a5498078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/nekernel-org/nekernel

#ifndef HALKIT_HYPERVISOR_H
#define HALKIT_HYPERVISOR_H

#include <NeKit/Config.h>

namespace Kernel {
MAKE_STRING_ENUM(HYPERVISOR)
ENUM_STRING(Qemu, "TCGTCGTCGTCG");
ENUM_STRING(KVM, " KVMKVMKVM  ");
ENUM_STRING(VMWare, "VMwareVMware");
ENUM_STRING(VirtualBox, "VBoxVBoxVBox");
ENUM_STRING(Xen, "XenVMMXenVMM");
ENUM_STRING(Microsoft, "Microsoft Hv");
ENUM_STRING(Parallels, " prl hyperv ");
ENUM_STRING(ParallelsAlt, " lrpepyh vr ");
ENUM_STRING(Bhyve, "bhyve bhyve ");
ENUM_STRING(Qnx, " QNXQVMBSQG ");
END_STRING_ENUM()
}  // namespace Kernel

#endif