ptos/amd64+ke: Add system call groundwork + exit syscall

Signed-off-by: Chloe M. <chloe@mensia.org>
This commit is contained in:
2026-07-15 21:20:35 +00:00
parent d72df46f64
commit d4390c6a1b
9 changed files with 146 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: System calls
* Author: Chloe M.
*/
#include <ptdef.h>
#include <ke/syscall.h>
#include <ps/uapi.h>
/* System call table */
PT_STATUS(*SystemCallTable[_SYSCALL_MAX])(SYSCALL_ARGS *Args) = {
[SYS_EXIT] = PsSysThreadExit
};