summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/HALKit/AMD64/HalKernelMain.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-15 23:50:06 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-05-15 23:50:59 +0200
commitb55f22d6a4f85751e0054dbf17eefe438a21b048 (patch)
treedeca3167de5d4cc146ebbfb97b8007a22575c3cc /dev/kernel/HALKit/AMD64/HalKernelMain.cc
parent2e7e91648ac419086686910e4b8b124041e14edf (diff)
feat(kernel/sched): fixes and improvements on the scheduler's
implementation. why? - The previous one wasn't entierly correct on some parts. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/HALKit/AMD64/HalKernelMain.cc')
-rw-r--r--dev/kernel/HALKit/AMD64/HalKernelMain.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/kernel/HALKit/AMD64/HalKernelMain.cc b/dev/kernel/HALKit/AMD64/HalKernelMain.cc
index 722c9cb5..b7ff3038 100644
--- a/dev/kernel/HALKit/AMD64/HalKernelMain.cc
+++ b/dev/kernel/HALKit/AMD64/HalKernelMain.cc
@@ -106,9 +106,9 @@ EXTERN_C Int32 hal_init_platform(Kernel::HEL::BootInfoHeader* handover_hdr) {
EXTERN_C void rtl_ne_task(void);
EXTERN_C Kernel::Void hal_real_init(Kernel::Void) noexcept {
- Kernel::rtl_create_user_process(rtl_ne_task, "NeTask");
- Kernel::rtl_create_user_process(rtl_ne_task, "NeTask#2");
- Kernel::rtl_create_user_process(rtl_ne_task, "NeTask#3");
+ Kernel::rtl_create_user_process(rtl_ne_task, "MGMTCTL");
+ Kernel::rtl_create_user_process(rtl_ne_task, "LAUNCHCTL");
+ Kernel::rtl_create_user_process(rtl_ne_task, "SECURITYCTL");
Kernel::HAL::Register64 idt_reg;
idt_reg.Base = reinterpret_cast<Kernel::UIntPtr>(kInterruptVectorTable);