Kernel: Rename MMU::{un,}allocate... to MMU::{un,}map
This is more appropriate name for the behaviour :D
This commit is contained in:
@@ -20,11 +20,11 @@ public:
|
||||
MMU();
|
||||
~MMU();
|
||||
|
||||
void allocate_page(uintptr_t, uint8_t);
|
||||
void allocate_range(uintptr_t, ptrdiff_t, uint8_t);
|
||||
void map_page(uintptr_t, uint8_t);
|
||||
void map_range(uintptr_t, ptrdiff_t, uint8_t);
|
||||
|
||||
void unallocate_page(uintptr_t);
|
||||
void unallocate_range(uintptr_t, ptrdiff_t);
|
||||
void unmap_page(uintptr_t);
|
||||
void unmap_range(uintptr_t, ptrdiff_t);
|
||||
|
||||
private:
|
||||
uint64_t* m_highest_paging_struct;
|
||||
|
||||
Reference in New Issue
Block a user