feat: Various improvements

This commit is contained in:
Daniel Hammer
2025-04-16 10:32:11 +02:00
parent 35cf3f7c80
commit fcd81be1c5
14 changed files with 135 additions and 98 deletions
+2
View File
@@ -22,6 +22,8 @@ namespace Memory {
head.next = (Page*)g_section.address;
head.next->size = section.size;
head.next->next = nullptr;
Kt::KernelLogStream(Kt::DEBUG, "PageFrameAllocator") << "New pool size: " << section.size;
}
void* PageFrameAllocator::Allocate() {