diff options
author | Andreas Kling <kling@serenityos.org> | 2022-01-29 13:08:37 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-01-30 16:21:59 +0100 |
commit | 3845c90e08e6734b9e1a37411a5416ce7c473f43 (patch) | |
tree | 158ebc343a1e4615097c127f18b07d104727cdd5 /Kernel/Arch/x86/common/Processor.cpp | |
parent | f469fb47b85591aefa1577e8503c535fadca58c2 (diff) | |
download | serenity-3845c90e08e6734b9e1a37411a5416ce7c473f43.zip |
Kernel: Remove unnecessary includes from Thread.h
...and deal with the fallout by adding missing includes everywhere.
Diffstat (limited to 'Kernel/Arch/x86/common/Processor.cpp')
-rw-r--r-- | Kernel/Arch/x86/common/Processor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Arch/x86/common/Processor.cpp b/Kernel/Arch/x86/common/Processor.cpp index aeb8cd3d44..fe0db59a49 100644 --- a/Kernel/Arch/x86/common/Processor.cpp +++ b/Kernel/Arch/x86/common/Processor.cpp @@ -12,6 +12,7 @@ #include <Kernel/Interrupts/APIC.h> #include <Kernel/Process.h> +#include <Kernel/Scheduler.h> #include <Kernel/Sections.h> #include <Kernel/StdLib.h> #include <Kernel/Thread.h> |