diff options
| author | Amlal <amlalelmahrouss@icloud.com> | 2024-12-22 16:50:01 +0100 |
|---|---|---|
| committer | Amlal <amlalelmahrouss@icloud.com> | 2024-12-22 16:50:01 +0100 |
| commit | 78772d95f14818efadc676651d30b04f6ae57c7d (patch) | |
| tree | 7d7ca223c00a60e6b1d8d98be306f53bd93bdac7 /dev/Kernel/HALKit/ARM64 | |
| parent | d78bd7257f380888e9900f6357e6ec280240d451 (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')
| -rw-r--r-- | dev/Kernel/HALKit/ARM64/HalKernelMain.cc | 2 |
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) { |
