summaryrefslogtreecommitdiff
path: root/Kernel/Memory
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2023-02-24 20:25:52 +0200
committerJelle Raaijmakers <jelle@gmta.nl>2023-06-04 21:32:34 +0200
commit927926b9247522b4c8854d48a79b55599108cff2 (patch)
tree706a4aa247ddde4ed4c055d98d247b007a664f3e /Kernel/Memory
parentb88c1d90e1d65d62f5438686bdb386652c3d7d40 (diff)
downloadserenity-927926b9247522b4c8854d48a79b55599108cff2.zip
Kernel: Move Performance-measurement code to the Tasks subdirectory
Diffstat (limited to 'Kernel/Memory')
-rw-r--r--Kernel/Memory/AddressSpace.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Memory/AddressSpace.cpp b/Kernel/Memory/AddressSpace.cpp
index 643f6bd94a..0d972cd1cc 100644
--- a/Kernel/Memory/AddressSpace.cpp
+++ b/Kernel/Memory/AddressSpace.cpp
@@ -12,8 +12,8 @@
#include <Kernel/Memory/AnonymousVMObject.h>
#include <Kernel/Memory/InodeVMObject.h>
#include <Kernel/Memory/MemoryManager.h>
-#include <Kernel/PerformanceManager.h>
#include <Kernel/Security/Random.h>
+#include <Kernel/Tasks/PerformanceManager.h>
#include <Kernel/Tasks/Process.h>
#include <Kernel/Tasks/Scheduler.h>