diff options
author | Marvin Borner | 2020-05-06 19:04:05 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-06 19:04:05 +0200 |
commit | d94ffac4a584dc7a4f6f2ec567b8caab05ce9253 (patch) | |
tree | 559cd596a0a407d4b40c1d12d3c6a0686494da16 /src/userspace/libc/syscall.c | |
parent | 1a8563a05608b5b5e27eada44cf4790926001c68 (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/userspace/libc/syscall.c')
-rw-r--r-- | src/userspace/libc/syscall.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/userspace/libc/syscall.c b/src/userspace/libc/syscall.c index fc0e09a..cf9dc89 100644 --- a/src/userspace/libc/syscall.c +++ b/src/userspace/libc/syscall.c @@ -1,22 +1,24 @@ +#include <stdint.h> +#include <common.h> #include <syscall.h> /** * DEFINITIONS */ -DEFN_SYSCALL0(halt, 0); +DEFN_SYSCALL0(halt, SYS_HALT); -DEFN_SYSCALL1(exit, 1, u32); +DEFN_SYSCALL1(exit, SYS_EXIT, u32); -DEFN_SYSCALL0(fork, 2); +DEFN_SYSCALL0(fork, SYS_FORK); -DEFN_SYSCALL4(read, 3, char *, u32, u32, u8 *); +DEFN_SYSCALL4(read, SYS_READ, char *, u32, u32, u8 *); -DEFN_SYSCALL4(write, 4, char *, u32, u32, u8 *); +DEFN_SYSCALL4(write, SYS_WRITE, char *, u32, u32, u8 *); -DEFN_SYSCALL1(exec, 5, char *); +DEFN_SYSCALL1(exec, SYS_EXEC, char *); -DEFN_SYSCALL0(get_pid, 6); +DEFN_SYSCALL0(get_pid, SYS_GET_PID); -DEFN_SYSCALL1(malloc, 7, u32); +DEFN_SYSCALL1(malloc, SYS_MALLOC, u32); -DEFN_SYSCALL1(free, 8, u32);
\ No newline at end of file +DEFN_SYSCALL1(free, SYS_FREE, u32);
\ No newline at end of file |