aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/syscall/syscall.c')
-rw-r--r--src/kernel/syscall/syscall.c44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/kernel/syscall/syscall.c b/src/kernel/syscall/syscall.c
deleted file mode 100644
index 21738f8..0000000
--- a/src/kernel/syscall/syscall.c
+++ /dev/null
@@ -1,44 +0,0 @@
-#include <common.h>
-#include <interrupts/interrupts.h>
-#include <io/io.h>
-#include <lib/stdio.h>
-#include <stdint.h>
-#include <syscall/syscall.h>
-#include <system.h>
-#include <tasks/process.h>
-
-typedef u32 (*syscall_func)(u32, ...);
-
-u32 (*syscalls[])() = { [SYS_HALT] = (u32(*)())halt_loop, // DEBUG!
- [SYS_EXIT] = sys_exit,
- [SYS_READ] = sys_read,
- [SYS_WRITE] = sys_write,
- [SYS_EXEC] = sys_exec,
- [SYS_SPAWN] = sys_spawn,
- [SYS_WAIT] = sys_wait,
- [SYS_GET_PID] = sys_get_pid,
- [SYS_MALLOC] = sys_malloc,
- [SYS_FREE] = sys_free,
- [SYS_GET] = sys_get,
- [SYS_MAP] = sys_map };
-
-void syscall_handler(struct regs *r)
-{
- if (r->eax >= sizeof(syscalls) / sizeof(*syscalls))
- return;
-
- syscall_func location = (syscall_func)syscalls[r->eax];
- if (!location)
- return;
-
- log("[SYSCALL] %d at [0x%x] with 0x%x 0x%x 0x%x 0x%x", r->eax, location, r->ebx, r->ecx,
- r->edx, r->esi, r->edi);
-
- r->eax = location(r->ebx, r->ecx, r->edx, r->esi, r->edi);
- debug("Finished syscall");
-}
-
-void syscalls_install()
-{
- isr_install_handler(0x80, syscall_handler);
-} \ No newline at end of file