summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/profiling.cpp
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/Syscalls/profiling.cpp
parentb88c1d90e1d65d62f5438686bdb386652c3d7d40 (diff)
downloadserenity-927926b9247522b4c8854d48a79b55599108cff2.zip
Kernel: Move Performance-measurement code to the Tasks subdirectory
Diffstat (limited to 'Kernel/Syscalls/profiling.cpp')
-rw-r--r--Kernel/Syscalls/profiling.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/profiling.cpp b/Kernel/Syscalls/profiling.cpp
index c21d4c4afa..f8a3a13f1d 100644
--- a/Kernel/Syscalls/profiling.cpp
+++ b/Kernel/Syscalls/profiling.cpp
@@ -4,8 +4,8 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
-#include <Kernel/PerformanceManager.h>
#include <Kernel/Tasks/Coredump.h>
+#include <Kernel/Tasks/PerformanceManager.h>
#include <Kernel/Tasks/Process.h>
#include <Kernel/Tasks/Scheduler.h>
#include <Kernel/Time/TimeManagement.h>