diff --git a/kernel/src/Api/CrashReportSyscall.hpp b/kernel/src/Api/CrashReportSyscall.hpp index 618c74e..5510d1c 100644 --- a/kernel/src/Api/CrashReportSyscall.hpp +++ b/kernel/src/Api/CrashReportSyscall.hpp @@ -7,7 +7,7 @@ #pragma once #include #include "Syscall.hpp" -#include "../CrashReport.hpp" +#include "../Sched/CrashReport.hpp" namespace Montauk { diff --git a/kernel/src/Hal/IDT.cpp b/kernel/src/Hal/IDT.cpp index 65164e3..1b69938 100644 --- a/kernel/src/Hal/IDT.cpp +++ b/kernel/src/Hal/IDT.cpp @@ -12,7 +12,7 @@ #include #include #include -#include "CrashReport.hpp" +#include #include namespace Hal { diff --git a/kernel/src/CrashReport.cpp b/kernel/src/Sched/CrashReport.cpp similarity index 100% rename from kernel/src/CrashReport.cpp rename to kernel/src/Sched/CrashReport.cpp diff --git a/kernel/src/CrashReport.hpp b/kernel/src/Sched/CrashReport.hpp similarity index 100% rename from kernel/src/CrashReport.hpp rename to kernel/src/Sched/CrashReport.hpp