aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/context_switching/syscall_handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/src/context_switching/syscall_handler.cpp')
-rw-r--r--arch/x86_64/src/context_switching/syscall_handler.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/arch/x86_64/src/context_switching/syscall_handler.cpp b/arch/x86_64/src/context_switching/syscall_handler.cpp
deleted file mode 100644
index 283d297..0000000
--- a/arch/x86_64/src/context_switching/syscall_handler.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "arch/context_switching/syscall_handler.hpp"
-
-#include <cstdint>
-
-namespace teachos::arch::context_switching
-{
- auto syscall_handler() -> void
- {
- uint64_t dummy{};
- switch (dummy)
- {
- case 0:
- break;
- default:
- break;
- }
- asm volatile("SYSRET");
- }
-} // namespace teachos::arch::context_switching \ No newline at end of file