Kernel: rename MMU::m_page_directory_pointer_table -> m_highest_paging_stuct

This might not always be pdpt. In x86_64 it is pml4/pml5
This commit is contained in:
Bananymous
2023-01-22 03:03:01 +02:00
parent 6ec4ba3dc9
commit cdd27ae3db
2 changed files with 9 additions and 9 deletions

View File

@@ -19,5 +19,5 @@ private:
MMU();
private:
uint64_t* m_page_descriptor_pointer_table;
uint64_t* m_highest_paging_struct;
};