diff options
| author | Amlal EL Mahrouss <amlal@softwarelabs.com> | 2024-06-15 13:49:07 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlal@softwarelabs.com> | 2024-06-15 13:49:07 +0200 |
| commit | f05b598a1c1a8ca4f1bf0acca078f9c9e3c07991 (patch) | |
| tree | 38c9175fe1d297c332fe0d8ee76fb4a28c4bde4a /Kernel/Sources/ProcessScheduler.cxx | |
| parent | 999877265276c8a5ae78eb01c92d1d9928a13576 (diff) | |
kernel: include assembly files as well in project.
Signed-off-by: Amlal EL Mahrouss <amlal@softwarelabs.com>
Diffstat (limited to 'Kernel/Sources/ProcessScheduler.cxx')
| -rw-r--r-- | Kernel/Sources/ProcessScheduler.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Kernel/Sources/ProcessScheduler.cxx b/Kernel/Sources/ProcessScheduler.cxx index dc273cf6..d232c72e 100644 --- a/Kernel/Sources/ProcessScheduler.cxx +++ b/Kernel/Sources/ProcessScheduler.cxx @@ -329,16 +329,12 @@ namespace NewOS * @brief Spin scheduler class. */ - bool ProcessHelper::StartScheduling() + SizeT ProcessHelper::StartScheduling() { auto& process_ref = ProcessScheduler::The().Leak(); SizeT ret = process_ref.Run(); - kcout << "newoskrnl: Iterated over: "; - kcout.Number(ret); - kcout << " processes.\r"; - - return true; + return ret; } /** |
