mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
15 lines
235 B
C++
15 lines
235 B
C++
#include <syscalls.hpp>
|
|
|
|
#include <cpu.hpp>
|
|
|
|
extern "C" __attribute__((naked, used, no_stack_protector)) void SystemCallHandlerStub()
|
|
{
|
|
|
|
}
|
|
|
|
extern "C" uint64_t SystemCallsHandler(SyscallsFrame *regs);
|
|
|
|
void InitializeSystemCalls()
|
|
{
|
|
}
|