Kernel: Add page table api to map multiple fast pages

This is not currently used, but can be handy in the future
This commit is contained in:
2026-05-03 00:55:06 +03:00
parent b8dc199738
commit 8091127150
3 changed files with 55 additions and 24 deletions

View File

@@ -149,6 +149,9 @@ namespace Kernel
static void map_fast_page(paddr_t);
static void unmap_fast_page();
static void* map_fast_page(size_t index, paddr_t);
static void unmap_fast_page(size_t index);
private:
paddr_t m_highest_paging_struct { 0 };
mutable RecursiveSpinLock m_lock;