diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 20:02:01 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 20:02:01 +0200 |
commit | 736092a0876b115c4131ea114fda81eb52bc3d2e (patch) | |
tree | d78be578fd22d2299edcc8ed343c1a505e338803 /Kernel/Lock.h | |
parent | 5bce004d84da43ee6453fc80b1695e8126d53080 (diff) | |
download | serenity-736092a0876b115c4131ea114fda81eb52bc3d2e.zip |
Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h}
There's a ton of work that would need to be done before we could spin up on
another architecture, but let's at least try to separate things out a bit.
Diffstat (limited to 'Kernel/Lock.h')
-rw-r--r-- | Kernel/Lock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Lock.h b/Kernel/Lock.h index fcd9a69a94..875dc84ae4 100644 --- a/Kernel/Lock.h +++ b/Kernel/Lock.h @@ -2,9 +2,9 @@ #include <AK/Assertions.h> #include <AK/Types.h> +#include <Kernel/Arch/i386/CPU.h> #include <Kernel/KSyms.h> #include <Kernel/Scheduler.h> -#include <Kernel/i386.h> class Thread; extern Thread* current; |