aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/syscall.c
diff options
context:
space:
mode:
authorMarvin Borner2020-05-06 19:04:05 +0200
committerMarvin Borner2020-05-06 19:04:05 +0200
commitd94ffac4a584dc7a4f6f2ec567b8caab05ce9253 (patch)
tree559cd596a0a407d4b40c1d12d3c6a0686494da16 /src/kernel/syscall/syscall.c
parent1a8563a05608b5b5e27eada44cf4790926001c68 (diff)
New build parameters and shared includes
This changes many files but I've just applied some replace commands.. So - nothing special!
Diffstat (limited to 'src/kernel/syscall/syscall.c')
-rw-r--r--src/kernel/syscall/syscall.c37
1 files changed, 19 insertions, 18 deletions
diff --git a/src/kernel/syscall/syscall.c b/src/kernel/syscall/syscall.c
index 53f94cd..92c0dbe 100644
--- a/src/kernel/syscall/syscall.c
+++ b/src/kernel/syscall/syscall.c
@@ -1,22 +1,23 @@
#include <stdint.h>
-#include <kernel/syscall/syscall.h>
-#include <kernel/interrupts/interrupts.h>
-#include <kernel/system.h>
-#include <kernel/lib/stdio.h>
-#include <kernel/io/io.h>
-#include <kernel/tasks/process.h>
-
-typedef uint32_t (*syscall_func)(uint32_t, ...);
-
-uint32_t (*syscalls[])() = { [0] = (uint32_t(*)())halt_loop, // DEBUG!
- [1] = sys_exit,
- [2] = sys_fork,
- [3] = sys_read,
- [4] = sys_write,
- [5] = sys_exec,
- [6] = sys_get_pid,
- [7] = sys_malloc,
- [8] = sys_free };
+#include <common.h>
+#include <syscall/syscall.h>
+#include <interrupts/interrupts.h>
+#include <system.h>
+#include <lib/stdio.h>
+#include <io/io.h>
+#include <tasks/process.h>
+
+typedef u32 (*syscall_func)(u32, ...);
+
+u32 (*syscalls[])() = { [SYS_HALT] = (u32(*)())halt_loop, // DEBUG!
+ [SYS_EXIT] = sys_exit,
+ [SYS_FORK] = sys_fork,
+ [SYS_READ] = sys_read,
+ [SYS_WRITE] = sys_write,
+ [SYS_EXEC] = sys_exec,
+ [SYS_GET_PID] = sys_get_pid,
+ [SYS_MALLOC] = sys_malloc,
+ [SYS_FREE] = sys_free };
void syscall_handler(struct regs *r)
{