summaryrefslogtreecommitdiff
path: root/Kernel/kmalloc.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-07 20:02:01 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-07 20:02:01 +0200
commit736092a0876b115c4131ea114fda81eb52bc3d2e (patch)
treed78be578fd22d2299edcc8ed343c1a505e338803 /Kernel/kmalloc.cpp
parent5bce004d84da43ee6453fc80b1695e8126d53080 (diff)
downloadserenity-736092a0876b115c4131ea114fda81eb52bc3d2e.zip
Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h}
There's a ton of work that would need to be done before we could spin up on another architecture, but let's at least try to separate things out a bit.
Diffstat (limited to 'Kernel/kmalloc.cpp')
-rw-r--r--Kernel/kmalloc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/kmalloc.cpp b/Kernel/kmalloc.cpp
index c6543dafb3..c5d8a76024 100644
--- a/Kernel/kmalloc.cpp
+++ b/Kernel/kmalloc.cpp
@@ -5,11 +5,11 @@
#include <AK/Assertions.h>
#include <AK/Types.h>
+#include <Kernel/Arch/i386/CPU.h>
#include <Kernel/KSyms.h>
#include <Kernel/Process.h>
#include <Kernel/Scheduler.h>
#include <Kernel/StdLib.h>
-#include <Kernel/i386.h>
#include <Kernel/kmalloc.h>
#define SANITIZE_KMALLOC