feat: multi-user system, bug fixes, security & performance fixes, and more

This commit is contained in:
2026-03-14 13:28:46 +01:00
parent 576ad34f95
commit 261b536041
389 changed files with 231853 additions and 591 deletions
+1
View File
@@ -63,6 +63,7 @@ namespace Memory {
void* PageFrameAllocator::AllocateZeroed() {
auto page = Allocate();
if (page == nullptr) return nullptr;
memset(page, 0, 0x1000);
return page;