diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-29 07:11:56 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-29 07:11:56 +0100 |
| commit | c08af30448618c5d1950dc1fa0fb1685782e7b22 (patch) | |
| tree | bc12b43a94fe4d4ff60b0f7c17100a179d95d0dc /dev/ZKAKit/src/CodeMgr.cc | |
| parent | 0511c53e648e5f253cd9e83c9e211aa6600db377 (diff) | |
FIX: Fix scheduler crash (1/2)
- UserProcessScheduler has been improved and cleaned up.
- Same goes for the HardwareThreadScheduler
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKAKit/src/CodeMgr.cc')
| -rw-r--r-- | dev/ZKAKit/src/CodeMgr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/ZKAKit/src/CodeMgr.cc b/dev/ZKAKit/src/CodeMgr.cc index c855347b..429858d6 100644 --- a/dev/ZKAKit/src/CodeMgr.cc +++ b/dev/ZKAKit/src/CodeMgr.cc @@ -14,7 +14,7 @@ namespace Kernel /// @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. - SizeT rtl_create_process(MainKind main, const Char* process_name) noexcept + ProcessID rtl_create_process(MainKind main, const Char* process_name) noexcept { if (!main) return No; |
