summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/ProcessScheduler.cxx
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlal@softwarelabs.com>2024-06-15 13:49:07 +0200
committerAmlal EL Mahrouss <amlal@softwarelabs.com>2024-06-15 13:49:07 +0200
commitf05b598a1c1a8ca4f1bf0acca078f9c9e3c07991 (patch)
tree38c9175fe1d297c332fe0d8ee76fb4a28c4bde4a /Kernel/Sources/ProcessScheduler.cxx
parent999877265276c8a5ae78eb01c92d1d9928a13576 (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.cxx8
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;
}
/**