diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-04-03 21:39:57 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-04-03 21:39:57 +0200 |
| commit | e3d15c1db1ccb906561e80012d624aecf1ae8d8d (patch) | |
| tree | 25a26f565ab5c442395299cbd2f2c4c1ab3f0af6 /Private/Source | |
| parent | 5e585fa5cdcb9648cf84a650b409e7589de1cecf (diff) | |
Kernel: A lot of changes, please expand the the message.
Meta: Add eclipse project.
PowerPC: WiP implementation of a 64-bit PowerPC kernel, see specs.
-> NOTE: It will still be a customized AMD64 machine, running a custom
version of CoreBoot.
Kernel: Start implementing MBCI support into the kernel.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/Source')
| -rw-r--r-- | Private/Source/ProcessScheduler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Private/Source/ProcessScheduler.cxx b/Private/Source/ProcessScheduler.cxx index 59b9bcea..202dcec5 100644 --- a/Private/Source/ProcessScheduler.cxx +++ b/Private/Source/ProcessScheduler.cxx @@ -130,7 +130,7 @@ void ProcessHeader::Exit(Int32 exit_code) { this->HeapPtr = nullptr; this->HeapCursor = nullptr; - this->FreeMemory = 0UL; // TODO: fill available heap. + this->FreeMemory = 0UL; this->UsedMemory = 0UL; } |
