diff options
Diffstat (limited to 'src/kernel/user/syscall.c')
-rw-r--r-- | src/kernel/user/syscall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/user/syscall.c b/src/kernel/user/syscall.c index eee65d6..8a2cf18 100644 --- a/src/kernel/user/syscall.c +++ b/src/kernel/user/syscall.c @@ -2,7 +2,7 @@ #include <process.h> #include <vfs.h> -#include <syscall.h> +#include <sct.h> typedef struct { uint32_t sc_id, a, b, c, d, e; // a: ebx, b: ecx, c: edx, d: esi, e: edi @@ -274,7 +274,7 @@ static uint32_t get_mode_sc(sc_args_t args) { // SYSCALLS SETUP ROUTINE // // ====================== // -void setup_syscalls() { +void setup_syscall_table() { sc_handlers[SC_EXIT] = exit_sc; sc_handlers[SC_YIELD] = yield_sc; sc_handlers[SC_DBG_PRINT] = dbg_print_sc; |