stos: mm: Add virtual page allocation

Signed-off-by: Chloe M. <chloe@mensia.org>
This commit is contained in:
Chloe M.
2026-06-23 09:52:44 +00:00
parent 333331171d
commit d337a3d55b
4 changed files with 224 additions and 0 deletions
+9
View File
@@ -24,4 +24,13 @@
*/
VOID MmInitVmm(VOID);
/*
* Allocate a number of contiguous pages
*
* @Count: Number of pages to allocate
*
* Returns NULL on failure
*/
VOID *MmAllocPages(USIZE Count);
#endif /* !_MM_VMM_H_ */