From 6dcf5b87da65de2254d6102f567183eaeca03088 Mon Sep 17 00:00:00 2001 From: Amlal Date: Sat, 26 Oct 2024 19:49:02 +0200 Subject: IMP: This commit contains fixes and improvements regarding the kernel, a next one will be done soon. Signed-off-by: Amlal --- dev/zka/KernelKit/CodeMgr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/zka/KernelKit/CodeMgr.h') diff --git a/dev/zka/KernelKit/CodeMgr.h b/dev/zka/KernelKit/CodeMgr.h index 41a90ec5..b8fa4c37 100644 --- a/dev/zka/KernelKit/CodeMgr.h +++ b/dev/zka/KernelKit/CodeMgr.h @@ -26,6 +26,6 @@ namespace Kernel /// @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 if the process was started or not. - bool sched_execute_thread(MainKind main, const Char* process_name) noexcept; + /// @return The team's process id. + SizeT rtl_create_process(MainKind main, const Char* process_name) noexcept; } // namespace Kernel -- cgit v1.2.3