Kernel: Don't directly include <Kernel/Arch/x86/TrapFrame.h>

This adds a new arch-independent header which in turn includes the
correct header for the build architecture.
This commit is contained in:
Gunnar Beutner 2022-10-16 16:57:21 +02:00 committed by Linus Groh
commit 1e3edb3b76
Notes: sideshowbarker 2024-07-17 18:46:30 +09:00
9 changed files with 25 additions and 8 deletions

View file

@ -6,8 +6,8 @@
*/
#include <Kernel/API/Syscall.h>
#include <Kernel/Arch/TrapFrame.h>
#include <Kernel/Arch/x86/Interrupts.h>
#include <Kernel/Arch/x86/TrapFrame.h>
#include <Kernel/Memory/MemoryManager.h>
#include <Kernel/Panic.h>
#include <Kernel/PerformanceManager.h>