summaryrefslogtreecommitdiff
path: root/Kernel/WaitQueue.h
diff options
context:
space:
mode:
authorJean-Baptiste Boric <jblbeurope@gmail.com>2021-07-18 09:15:52 +0200
committerAndreas Kling <kling@serenityos.org>2021-08-07 11:48:00 +0200
commit2c3b0baf7652e6ba64ffd1414997270a3ab3eaea (patch)
treee04c94338f60762054085974501539484f033fa5 /Kernel/WaitQueue.h
parentf7f794e74a7fa28a93431e457959eba2bbac8c0c (diff)
downloadserenity-2c3b0baf7652e6ba64ffd1414997270a3ab3eaea.zip
Kernel: Move SpinLock.h into Locking/
Diffstat (limited to 'Kernel/WaitQueue.h')
-rw-r--r--Kernel/WaitQueue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/WaitQueue.h b/Kernel/WaitQueue.h
index dd8af0089e..6069380059 100644
--- a/Kernel/WaitQueue.h
+++ b/Kernel/WaitQueue.h
@@ -7,7 +7,7 @@
#pragma once
#include <AK/Atomic.h>
-#include <Kernel/SpinLock.h>
+#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Thread.h>
namespace Kernel {