aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/context_switching/main.cpp
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2025-05-05 06:41:31 +0000
committerMatteo Gmür <matteo.gmuer1@ost.ch>2025-05-05 06:41:31 +0000
commitc1dff44858ebdb3cd5a49e84179796e44e7eb91c (patch)
tree998f8cec607da4359d5b3e9db89e949250ccd197 /arch/x86_64/src/context_switching/main.cpp
parentf83727a0c8913d19415c2ad482c70ee7373f6f3f (diff)
downloadteachos-c1dff44858ebdb3cd5a49e84179796e44e7eb91c.tar.xz
teachos-c1dff44858ebdb3cd5a49e84179796e44e7eb91c.zip
Fix recursive include using extra file
Diffstat (limited to 'arch/x86_64/src/context_switching/main.cpp')
-rw-r--r--arch/x86_64/src/context_switching/main.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/x86_64/src/context_switching/main.cpp b/arch/x86_64/src/context_switching/main.cpp
index a112924..9539428 100644
--- a/arch/x86_64/src/context_switching/main.cpp
+++ b/arch/x86_64/src/context_switching/main.cpp
@@ -1,15 +1,12 @@
#include "arch/context_switching/main.hpp"
#include "arch/boot/pointers.hpp"
-#include "arch/context_switching/syscall/main.hpp"
-#include "arch/exception_handling/assert.hpp"
+#include "arch/context_switching/syscall/syscall_enable.hpp"
#include "arch/kernel/cpu/call.hpp"
-#include "arch/kernel/cpu/control_register.hpp"
#include "arch/kernel/cpu/if.hpp"
#include "arch/kernel/cpu/segment_register.hpp"
#include "arch/kernel/cpu/tr.hpp"
#include "arch/user/main.hpp"
-#include "arch/video/vga/text.hpp"
namespace teachos::arch::context_switching
{