summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/HALKit/ARM64/HalKernelMain.cc
diff options
context:
space:
mode:
authorAmlal <amlalelmahrouss@icloud.com>2024-12-22 16:50:01 +0100
committerAmlal <amlalelmahrouss@icloud.com>2024-12-22 16:50:01 +0100
commit78772d95f14818efadc676651d30b04f6ae57c7d (patch)
tree7d7ca223c00a60e6b1d8d98be306f53bd93bdac7 /dev/Kernel/HALKit/ARM64/HalKernelMain.cc
parentd78bd7257f380888e9900f6357e6ec280240d451 (diff)
IMPL: Issue #4 Fixing a bug within the scheduler, which causes a SIGKILL
to happen. Signed-off-by: Amlal <amlalelmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/HALKit/ARM64/HalKernelMain.cc')
-rw-r--r--dev/Kernel/HALKit/ARM64/HalKernelMain.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/Kernel/HALKit/ARM64/HalKernelMain.cc b/dev/Kernel/HALKit/ARM64/HalKernelMain.cc
index c7c642ff..2901e80b 100644
--- a/dev/Kernel/HALKit/ARM64/HalKernelMain.cc
+++ b/dev/Kernel/HALKit/ARM64/HalKernelMain.cc
@@ -49,7 +49,7 @@ EXTERN_C void hal_init_platform(
CG::CGDrawBackground();
- rtl_kernel_main(0, nullptr, nullptr, 0);
+ Kernel::rtl_create_process(rtl_kernel_main, "ZkaOS System Kernel");
while (YES)
{