#include "arch/context_switching/syscall_handler.hpp" #include 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