diff options
Diffstat (limited to 'src/kernel/KernelKit/CodeMgr.h')
| -rw-r--r-- | src/kernel/KernelKit/CodeMgr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/KernelKit/CodeMgr.h b/src/kernel/KernelKit/CodeMgr.h index f3260f1f..dc08fc99 100644 --- a/src/kernel/KernelKit/CodeMgr.h +++ b/src/kernel/KernelKit/CodeMgr.h @@ -24,8 +24,8 @@ /// @author Amlal El Mahrouss (amlal@nekernel.org) namespace Kernel { -/// @brief Main process entrypoint. -typedef void (*rtl_main_kind)(void); +/// @brief Image process entrypoint. +typedef void (*rtl_start_kind)(void); /// @brief C++ Constructor entrypoint. typedef void (*rtl_cxx_ctor_kind)(void); @@ -45,5 +45,5 @@ BOOL rtl_create_kernel_task(HAL::StackFramePtr main, const KID kid); /// accessible. /// @param main the start of the process. /// @return The team's process id. -ProcessID rtl_create_user_process(rtl_main_kind main, const Char* process_name); +ProcessID rtl_create_user_process(rtl_start_kind main, const Char* process_name); } // namespace Kernel |
