summaryrefslogtreecommitdiffhomepage
path: root/dev/zka/KernelKit/CodeMgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'dev/zka/KernelKit/CodeMgr.h')
-rw-r--r--dev/zka/KernelKit/CodeMgr.h4
1 files changed, 2 insertions, 2 deletions
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