diff options
| author | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-11-01 13:22:02 +0000 |
|---|---|---|
| committer | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-11-01 13:22:02 +0000 |
| commit | 31e1ac359eb4b84bdd81f768b2de327193976a55 (patch) | |
| tree | 5cd9653afa4cd79b3c8caf89ff7651010380006a /arch/x86_64/src/kernel | |
| parent | b38ce5e24222ec97b45e1f87da4a392859947064 (diff) | |
| download | teachos-31e1ac359eb4b84bdd81f768b2de327193976a55.tar.xz teachos-31e1ac359eb4b84bdd81f768b2de327193976a55.zip | |
Remove static page mapper and replace with unique active and inactive page table classes.
Diffstat (limited to 'arch/x86_64/src/kernel')
| -rw-r--r-- | arch/x86_64/src/kernel/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/src/kernel/main.cpp b/arch/x86_64/src/kernel/main.cpp index 22335d1..f1d6496 100644 --- a/arch/x86_64/src/kernel/main.cpp +++ b/arch/x86_64/src/kernel/main.cpp @@ -3,7 +3,7 @@ #include "arch/exception_handling/assert.hpp" #include "arch/memory/allocator/area_frame_allocator.hpp" #include "arch/memory/multiboot/reader.hpp" -#include "arch/memory/paging/page_mapper.hpp" +#include "arch/memory/paging/active_page_table.hpp" #include "arch/memory/paging/temporary_page.hpp" #include "arch/video/vga/text.hpp" |
