summaryrefslogtreecommitdiffhomepage
path: root/Kernel/NewKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-07-10 09:36:03 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-07-10 09:40:09 +0200
commit5ce8823643f02e4d04c80e2dcf944b442b2ba69b (patch)
treee908592781f7fd26cefbc491de139f4c2a5a8f05 /Kernel/NewKit
parent5f6549b7d46118ba416faa170ff088d98c9144f0 (diff)
MHR-36:
IMP: - APICController class. - Prefix string enum with 'e'. - Document MSR functions. - ke_map_address returns 0 when mapped or not mapped, 1 when pde is invalid. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Kernel/NewKit')
-rw-r--r--Kernel/NewKit/Macros.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/NewKit/Macros.hpp b/Kernel/NewKit/Macros.hpp
index 913ad7cf..b45d5b04 100644
--- a/Kernel/NewKit/Macros.hpp
+++ b/Kernel/NewKit/Macros.hpp
@@ -79,7 +79,7 @@
#endif
#ifndef ENUM_STRING
-#define ENUM_STRING(NAME, VAL) inline constexpr const char* NAME = VAL
+#define ENUM_STRING(NAME, VAL) inline constexpr const char* e##NAME = VAL
#endif
#ifndef END_STRING_ENUM