summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/ProcessScheduler.cxx
diff options
context:
space:
mode:
authorAmlal <amlal@zka.com>2024-07-12 01:03:21 +0200
committerAmlal <amlal@zka.com>2024-07-12 01:03:21 +0200
commita268a7d3551523fb82b1495808f3ea2516b6fdaa (patch)
tree0a7fab583aafca52bccf5bac143517f559b3a247 /Kernel/Sources/ProcessScheduler.cxx
parent0a076b2bcc21d4fc94b83569e1b5198f9e4acd0b (diff)
[IMP && FIX] Various patches and implementations.
Most importantly: - JSON parser. Signed-off-by: Amlal <amlal@zka.com>
Diffstat (limited to 'Kernel/Sources/ProcessScheduler.cxx')
-rw-r--r--Kernel/Sources/ProcessScheduler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Sources/ProcessScheduler.cxx b/Kernel/Sources/ProcessScheduler.cxx
index 85aa7f76..42e7285a 100644
--- a/Kernel/Sources/ProcessScheduler.cxx
+++ b/Kernel/Sources/ProcessScheduler.cxx
@@ -219,7 +219,7 @@ namespace Kernel
}
else
{
- // something went wrong, do not continue, process kind is incorrect.
+ // something went wrong, do not continue, process kind is incorrect.
process.Leak().Crash();
return -kErrorProcessFault;
}
@@ -245,7 +245,7 @@ namespace Kernel
/// @retval false process doesn't exist in team.
Bool ProcessScheduler::Remove(SizeT processSlot)
{
- // check if process is within range.
+ // check if process is within range.
if (processSlot > mTeam.AsArray().Count())
return false;