aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/pre/src/context_switching
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/pre/src/context_switching')
-rw-r--r--arch/x86_64/pre/src/context_switching/main.cpp16
-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
4 files changed, 20 insertions, 20 deletions
diff --git a/arch/x86_64/pre/src/context_switching/main.cpp b/arch/x86_64/pre/src/context_switching/main.cpp
index 3eb6dae..0961499 100644
--- a/arch/x86_64/pre/src/context_switching/main.cpp
+++ b/arch/x86_64/pre/src/context_switching/main.cpp
@@ -1,12 +1,12 @@
-#include "arch/context_switching/main.hpp"
+#include <arch/context_switching/main.hpp>
-#include "arch/boot/pointers.hpp"
-#include "arch/context_switching/syscall/syscall_enable.hpp"
-#include "arch/kernel/cpu/call.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/boot/pointers.hpp>
+#include <arch/context_switching/syscall/syscall_enable.hpp>
+#include <arch/kernel/cpu/call.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>
namespace teachos::arch::context_switching
{
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
{