diff options
author | James Mintram <me@jamesrm.com> | 2021-10-14 00:07:37 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-14 01:23:08 +0100 |
commit | 545ce5b5957df8f21de574e15453a711770262f0 (patch) | |
tree | 2c59bbef8056d9678b46202ec7c085f069bc7e29 /AK/Singleton.h | |
parent | 23676bee1f95ab3d441a44b4601670ab7fcabf0d (diff) | |
download | serenity-545ce5b5957df8f21de574e15453a711770262f0.zip |
Kernel: Add per platform Processor.h headers
The platform independent Processor.h file includes the shared processor
code and includes the specific platform header file.
All references to the Arch/x86/Processor.h file have been replaced with
a reference to Arch/Processor.h.
Diffstat (limited to 'AK/Singleton.h')
-rw-r--r-- | AK/Singleton.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Singleton.h b/AK/Singleton.h index a736d3471f..353102a83b 100644 --- a/AK/Singleton.h +++ b/AK/Singleton.h @@ -10,7 +10,7 @@ #include <AK/Atomic.h> #include <AK/Noncopyable.h> #ifdef KERNEL -# include <Kernel/Arch/x86/Processor.h> +# include <Kernel/Arch/Processor.h> # include <Kernel/Arch/x86/ScopedCritical.h> #endif |