Bläddra i källkod

Kernel: Make AddressSpace.cpp compile on aarch64

James Mintram 3 år sedan
förälder
incheckning
0d7eee625f
2 ändrade filer med 2 tillägg och 0 borttagningar
  1. 1 0
      Kernel/Memory/AddressSpace.cpp
  2. 1 0
      Kernel/Memory/PageDirectory.h

+ 1 - 0
Kernel/Memory/AddressSpace.cpp

@@ -5,6 +5,7 @@
  * SPDX-License-Identifier: BSD-2-Clause
  */
 
+#include <Kernel/Arch/CPU.h>
 #include <Kernel/Locking/Spinlock.h>
 #include <Kernel/Memory/AddressSpace.h>
 #include <Kernel/Memory/AnonymousVMObject.h>

+ 1 - 0
Kernel/Memory/PageDirectory.h

@@ -6,6 +6,7 @@
 
 #pragma once
 
+#include <AK/Badge.h>
 #include <AK/HashMap.h>
 #include <AK/IntrusiveRedBlackTree.h>
 #include <AK/RefCounted.h>