d4390c6a1b
Signed-off-by: Chloe M. <chloe@mensia.org>
17 lines
324 B
C
17 lines
324 B
C
/*
|
|
* 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
|
|
};
|