diff options
author | Jean-Baptiste Boric <jblbeurope@gmail.com> | 2021-07-18 09:15:52 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-07 11:48:00 +0200 |
commit | 2c3b0baf7652e6ba64ffd1414997270a3ab3eaea (patch) | |
tree | e04c94338f60762054085974501539484f033fa5 /Kernel/Scheduler.h | |
parent | f7f794e74a7fa28a93431e457959eba2bbac8c0c (diff) | |
download | serenity-2c3b0baf7652e6ba64ffd1414997270a3ab3eaea.zip |
Kernel: Move SpinLock.h into Locking/
Diffstat (limited to 'Kernel/Scheduler.h')
-rw-r--r-- | Kernel/Scheduler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Scheduler.h b/Kernel/Scheduler.h index 9a17758500..ed35ad9449 100644 --- a/Kernel/Scheduler.h +++ b/Kernel/Scheduler.h @@ -11,7 +11,7 @@ #include <AK/IntrusiveList.h> #include <AK/Types.h> #include <Kernel/Forward.h> -#include <Kernel/SpinLock.h> +#include <Kernel/Locking/SpinLock.h> #include <Kernel/Time/TimeManagement.h> #include <Kernel/UnixTypes.h> |