diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-29 15:09:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-29 15:09:24 -0500 |
| commit | 20d9401703bff7241645c9883828ad10beae6fa7 (patch) | |
| tree | e446d471a0eaf4ed7ac67e878ce4fb02334a2acb /src/kernel/KernelKit/CodeMgr.h | |
| parent | a9019ecaaad76cb3569a6852dbc30c48c5436d1d (diff) | |
| parent | ceabd82ac8e796249feacf39c836034ed5e11c6d (diff) | |
Merge pull request #91 from nekernel-org/dev
dev->stable
Diffstat (limited to 'src/kernel/KernelKit/CodeMgr.h')
| -rw-r--r-- | src/kernel/KernelKit/CodeMgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/KernelKit/CodeMgr.h b/src/kernel/KernelKit/CodeMgr.h index e537b26d..f3260f1f 100644 --- a/src/kernel/KernelKit/CodeMgr.h +++ b/src/kernel/KernelKit/CodeMgr.h @@ -38,12 +38,12 @@ typedef void (*rtl_cxx_dtor_kind)(void); /// accessible. /// @param main the start of the process. /// @return The team's process id. -BOOL rtl_create_kernel_task(HAL::StackFramePtr main, const KID kid) noexcept; +BOOL rtl_create_kernel_task(HAL::StackFramePtr main, const KID kid); /// @brief Executes a new process from a function. User 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_user_process(rtl_main_kind main, const Char* process_name) noexcept; +ProcessID rtl_create_user_process(rtl_main_kind main, const Char* process_name); } // namespace Kernel |
