mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-25 22:14:37 +00:00
28 lines
788 B
C++
28 lines
788 B
C++
#ifndef __FENNIX_KERNEL_SYSCALLS_H__
|
|
#define __FENNIX_KERNEL_SYSCALLS_H__
|
|
|
|
#include <types.h>
|
|
|
|
typedef struct SyscallsFrame
|
|
{
|
|
#if defined(__amd64__)
|
|
uint64_t r15, r14, r13, r12, r11, r10, r9, r8;
|
|
uint64_t rbp, rdi, rsi, rdx, rcx, rbx, rax;
|
|
uint64_t InterruptNumber, ErrorCode, rip, cs, rflags, rsp, ss;
|
|
#elif defined(__i386__)
|
|
uint64_t ebp, edi, esi, edx, ecx, ebx, eax;
|
|
uint64_t InterruptNumber, ErrorCode, eip, cs, eflags, esp, ss;
|
|
#elif defined(__aarch64__)
|
|
#endif
|
|
} SyscallsFrame;
|
|
|
|
uint64_t HandleNativeSyscalls(SyscallsFrame *Frame);
|
|
uint64_t HandleLinuxSyscalls(SyscallsFrame *Frame);
|
|
|
|
/**
|
|
* @brief Initialize syscalls for the current CPU. (Function is available on x32, x64 & aarch64)
|
|
*/
|
|
void InitializeSystemCalls();
|
|
|
|
#endif // !__FENNIX_KERNEL_SYSCALLS_H__
|