From 62e5a35940198f0f8fbabdf31c80455647420c4e Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Thu, 19 Feb 2015 18:53:15 +0100 Subject: Several things : - disambiguate syscall.h : kernel syscall.h moved to sct.h - fix btree_remove_v !! (munmap fucked up stuff before) - make nullfs's directory listing non-exclusive (it actually copies the listing on open() and readdir()'s from that copy) --- src/kernel/user/syscall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kernel/user/syscall.c') 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 #include -#include +#include 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; -- cgit v1.2.3