From 83cf6299a17d60ece650baa05069f657f783c911 Mon Sep 17 00:00:00 2001 From: Amlal Date: Mon, 16 Dec 2024 06:02:01 +0100 Subject: IMPL: rtl_main_kind type from CodeMgr. Signed-off-by: Amlal --- dev/ZKAKit/KernelKit/CodeMgr.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dev/ZKAKit/KernelKit/CodeMgr.h') diff --git a/dev/ZKAKit/KernelKit/CodeMgr.h b/dev/ZKAKit/KernelKit/CodeMgr.h index 1915d55d..1db51449 100644 --- a/dev/ZKAKit/KernelKit/CodeMgr.h +++ b/dev/ZKAKit/KernelKit/CodeMgr.h @@ -3,7 +3,7 @@ Copyright (C) 2024, Theater Quality Inc, all rights reserved. File: CodeMgr.hpp - Purpose: Code Mgr and DLL mgr. + Purpose: Code Mgr. Revision History: @@ -21,11 +21,11 @@ namespace Kernel { /// @brief Main process entrypoint. - typedef void (*MainKind)(void); + typedef void (*rtl_main_kind)(void); /// @brief Executes a new process from a function. Kernel code only. /// @note This sets up a new stack, anything on the main function that calls the Kernel will not be accessible. /// @param main the start of the process. /// @return The team's process id. - ProcessID rtl_create_process(MainKind main, const Char* process_name) noexcept; + ProcessID rtl_create_process(rtl_main_kind main, const Char* process_name) noexcept; } // namespace Kernel -- cgit v1.2.3