summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKAKit/HALKit
diff options
context:
space:
mode:
authorAmlal <amlalelmahrouss@icloud.com>2024-12-16 06:02:01 +0100
committerAmlal <amlalelmahrouss@icloud.com>2024-12-16 06:02:01 +0100
commit83cf6299a17d60ece650baa05069f657f783c911 (patch)
treeb886d51fe3a46e32eb063b96ac932cbf40080d5a /dev/ZKAKit/HALKit
parent6e17212bee66c76a82787e32f50962c95c9b3044 (diff)
IMPL: rtl_main_kind type from CodeMgr.
Signed-off-by: Amlal <amlalelmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKAKit/HALKit')
-rw-r--r--dev/ZKAKit/HALKit/AMD64/HalKernelMain.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/ZKAKit/HALKit/AMD64/HalKernelMain.cc b/dev/ZKAKit/HALKit/AMD64/HalKernelMain.cc
index cb3941ba..d68c0541 100644
--- a/dev/ZKAKit/HALKit/AMD64/HalKernelMain.cc
+++ b/dev/ZKAKit/HALKit/AMD64/HalKernelMain.cc
@@ -18,7 +18,7 @@ EXTERN_C Kernel::VoidPtr kInterruptVectorTable[];
EXTERN_C Kernel::VoidPtr mp_user_switch_proc;
EXTERN_C Kernel::Char mp_user_switch_proc_stack_begin[];
-EXTERN_C Kernel::MainKind __CTOR_LIST__[];
+EXTERN_C Kernel::rtl_main_kind __CTOR_LIST__[];
EXTERN_C Kernel::VoidPtr __DTOR_LIST__;
EXTERN_C Kernel::Void gsh_dll_main(Kernel::Void);
@@ -27,7 +27,7 @@ STATIC Kernel::Void hal_init_cxx_ctors()
{
for (Kernel::SizeT index = 0UL; __CTOR_LIST__[index] != __DTOR_LIST__; ++index)
{
- Kernel::MainKind constructor_cxx = (Kernel::MainKind)__CTOR_LIST__[index];
+ Kernel::rtl_main_kind constructor_cxx = (Kernel::rtl_main_kind)__CTOR_LIST__[index];
constructor_cxx();
}
}