Kernel::CPU: Move headers into common directory

Alot of code is shared between i386/i686/x86 and x86_64
and a lot probably will be used for compatability modes.
So we start by moving the headers into one Directory.
We will probalby be able to move some cpp files aswell.
This commit is contained in:
Hendiadyoin1 2021-03-07 21:28:28 +01:00 committed by Andreas Kling
parent 5a8cc07485
commit 0d934fc991
Notes: sideshowbarker 2024-07-18 21:12:59 +09:00
60 changed files with 412 additions and 208 deletions

View file

@ -28,7 +28,7 @@
#include <AK/ScopeGuard.h>
#include <AK/StringBuilder.h>
#include <AK/Time.h>
#include <Kernel/Arch/i386/CPU.h>
#include <Kernel/Arch/x86/CPU.h>
#include <Kernel/Arch/x86/SmapDisabler.h>
#include <Kernel/Debug.h>
#include <Kernel/FileSystem/FileDescription.h>