aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/pre/src/context_switching/syscall
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-04-23 14:03:28 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-04-23 14:15:18 +0200
commitf6f10575f75ac23d06e1d94f7861611503daa7af (patch)
tree23c93eb6d63aac78cbe6c2b1b190665c1530e0dd /arch/x86_64/pre/src/context_switching/syscall
parent2d8fed40bd0d0f8144783b6b344dc79944291b72 (diff)
downloadkernel-f6f10575f75ac23d06e1d94f7861611503daa7af.tar.xz
kernel-f6f10575f75ac23d06e1d94f7861611503daa7af.zip
chore: banish relative includes
Diffstat (limited to 'arch/x86_64/pre/src/context_switching/syscall')
-rw-r--r--arch/x86_64/pre/src/context_switching/syscall/main.cpp2
-rw-r--r--arch/x86_64/pre/src/context_switching/syscall/syscall_enable.cpp8
-rw-r--r--arch/x86_64/pre/src/context_switching/syscall/syscall_handler.cpp14
3 files changed, 12 insertions, 12 deletions
diff --git a/arch/x86_64/pre/src/context_switching/syscall/main.cpp b/arch/x86_64/pre/src/context_switching/syscall/main.cpp
index b4ab468..10bd087 100644
--- a/arch/x86_64/pre/src/context_switching/syscall/main.cpp
+++ b/arch/x86_64/pre/src/context_switching/syscall/main.cpp
@@ -1,4 +1,4 @@
-#include "arch/context_switching/syscall/main.hpp"
+#include <arch/context_switching/syscall/main.hpp>
namespace teachos::arch::context_switching::syscall
{
diff --git a/arch/x86_64/pre/src/context_switching/syscall/syscall_enable.cpp b/arch/x86_64/pre/src/context_switching/syscall/syscall_enable.cpp
index dbb3ed9..f9f070a 100644
--- a/arch/x86_64/pre/src/context_switching/syscall/syscall_enable.cpp
+++ b/arch/x86_64/pre/src/context_switching/syscall/syscall_enable.cpp
@@ -1,8 +1,8 @@
-#include "arch/context_switching/syscall/syscall_enable.hpp"
+#include <arch/context_switching/syscall/syscall_enable.hpp>
-#include "arch/context_switching/interrupt_descriptor_table/segment_selector.hpp"
-#include "arch/context_switching/syscall/syscall_handler.hpp"
-#include "arch/kernel/cpu/msr.hpp"
+#include <arch/context_switching/interrupt_descriptor_table/segment_selector.hpp>
+#include <arch/context_switching/syscall/syscall_handler.hpp>
+#include <arch/kernel/cpu/msr.hpp>
namespace teachos::arch::context_switching::syscall
{
diff --git a/arch/x86_64/pre/src/context_switching/syscall/syscall_handler.cpp b/arch/x86_64/pre/src/context_switching/syscall/syscall_handler.cpp
index c120f77..430d65c 100644
--- a/arch/x86_64/pre/src/context_switching/syscall/syscall_handler.cpp
+++ b/arch/x86_64/pre/src/context_switching/syscall/syscall_handler.cpp
@@ -1,11 +1,11 @@
-#include "arch/context_switching/syscall/syscall_handler.hpp"
+#include <arch/context_switching/syscall/syscall_handler.hpp>
-#include "arch/context_switching/syscall/main.hpp"
-#include "arch/exception_handling/assert.hpp"
-#include "arch/exception_handling/panic.hpp"
-#include "arch/memory/heap/global_heap_allocator.hpp"
-#include "arch/memory/main.hpp"
-#include "arch/video/vga/text.hpp"
+#include <arch/context_switching/syscall/main.hpp>
+#include <arch/exception_handling/assert.hpp>
+#include <arch/exception_handling/panic.hpp>
+#include <arch/memory/heap/global_heap_allocator.hpp>
+#include <arch/memory/main.hpp>
+#include <arch/video/vga/text.hpp>
namespace teachos::arch::context_switching::syscall
{