Kernel: Implement InterruptDisabler using generic Processor functions

Now that the code does not use architectural specific code, it is moved
to the generic Arch directory and the paths are modified accordingly.
This commit is contained in:
Timon Kruiper 2022-05-16 14:42:49 +02:00 committed by Linus Groh
parent ea9cf8b6ab
commit a4534678f9
Notes: sideshowbarker 2024-07-17 10:31:22 +09:00
28 changed files with 58 additions and 64 deletions

View file

@ -7,7 +7,7 @@
#include <AK/HashMap.h>
#include <AK/Singleton.h>
#include <AK/StringView.h>
#include <Kernel/Arch/x86/InterruptDisabler.h>
#include <Kernel/Arch/InterruptDisabler.h>
#include <Kernel/FileSystem/FileSystem.h>
#include <Kernel/FileSystem/Inode.h>
#include <Kernel/Memory/MemoryManager.h>