From 98403fe342c8c2795de34e922958ee8d02c94e04 Mon Sep 17 00:00:00 2001 From: Amlal EL Mahrouss Date: Thu, 15 Aug 2024 10:38:58 +0200 Subject: [IMP] MHR-28: + Fixed VMH allocator, which was hanging because of a unitialized global field. + Working on fixing User save method for authorization purposes. + If .bss -> Zero memory region. Signed-off-by: Amlal EL Mahrouss --- Kernel/Sources/PageManager.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Kernel/Sources/PageManager.cxx') diff --git a/Kernel/Sources/PageManager.cxx b/Kernel/Sources/PageManager.cxx index 8e9e77cc..7e0ef67b 100644 --- a/Kernel/Sources/PageManager.cxx +++ b/Kernel/Sources/PageManager.cxx @@ -63,6 +63,8 @@ namespace Kernel /// @return PTEWrapper PageManager::Request(Boolean Rw, Boolean User, Boolean ExecDisable, SizeT Sz) { + kcout << "newoskrnl: Allocating VMH page from PageManager...\r"; + // Store PTE wrapper right after PTE. VoidPtr ptr = Kernel::HAL::hal_alloc_page(Rw, User, Sz); -- cgit v1.2.3