summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/HALKit/AMD64/Hypervisor.h
blob: a0ffc38a51db4d9933905d5c475ec3ed52c21dc5 (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
26
// SPDX-License-Identifier: Apache-2.0
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-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