Kernel: Move LockMode into Locking/

This commit is contained in:
Jean-Baptiste Boric 2021-07-18 09:09:04 +02:00 committed by Andreas Kling
parent 786036820b
commit 479b07339c
Notes: sideshowbarker 2024-07-18 07:21:03 +09:00
3 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
#include <AK/HashMap.h>
#include <AK/Types.h>
#include <Kernel/Forward.h>
#include <Kernel/LockMode.h>
#include <Kernel/Locking/LockMode.h>
#include <Kernel/WaitQueue.h>
namespace Kernel {

View File

@ -27,7 +27,7 @@
#include <Kernel/Forward.h>
#include <Kernel/KResult.h>
#include <Kernel/KString.h>
#include <Kernel/LockMode.h>
#include <Kernel/Locking/LockMode.h>
#include <Kernel/Memory/VirtualRange.h>
#include <Kernel/Scheduler.h>
#include <Kernel/TimerQueue.h>