diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-11 22:02:39 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-11 22:02:39 +0100 |
commit | 0dbb22e9e03d655a2f64d42579aacf3820deeb6f (patch) | |
tree | a8c98c17f80ff55097d7567dfc85a0e34c5f5535 /Kernel/VM/PageDirectory.cpp | |
parent | ba42d741cb3b4adbe117a1d3da1b1fc7ba0f1509 (diff) | |
download | serenity-0dbb22e9e03d655a2f64d42579aacf3820deeb6f.zip |
Kernel: Remove a handful of unused things in VM/ directory
Also add some missing initializers.
Diffstat (limited to 'Kernel/VM/PageDirectory.cpp')
-rw-r--r-- | Kernel/VM/PageDirectory.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/VM/PageDirectory.cpp b/Kernel/VM/PageDirectory.cpp index 3f38942353..19f4a6836d 100644 --- a/Kernel/VM/PageDirectory.cpp +++ b/Kernel/VM/PageDirectory.cpp @@ -28,7 +28,6 @@ #include <AK/Singleton.h> #include <Kernel/Process.h> #include <Kernel/Random.h> -#include <Kernel/Thread.h> #include <Kernel/VM/MemoryManager.h> #include <Kernel/VM/PageDirectory.h> @@ -36,7 +35,6 @@ namespace Kernel { static const FlatPtr userspace_range_base = 0x00800000; static const FlatPtr userspace_range_ceiling = 0xbe000000; -static const FlatPtr kernelspace_range_base = 0xc0800000; static AK::Singleton<HashMap<u32, PageDirectory*>> s_cr3_map; |