From 34c752f6fe4f71169172f1b3e46b1eddf69eba6e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 28 Apr 2020 23:33:34 +0200 Subject: Added support for multiple user applications --- src/userspace/libc/syscall.h | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'src/userspace/libc/syscall.h') diff --git a/src/userspace/libc/syscall.h b/src/userspace/libc/syscall.h index 9f5bdb0..61ffecc 100644 --- a/src/userspace/libc/syscall.h +++ b/src/userspace/libc/syscall.h @@ -70,17 +70,11 @@ */ DECL_SYSCALL0(halt); -DECL_SYSCALL1(write, const char *); +DECL_SYSCALL1(putch, const char *); -DECL_SYSCALL1(read, const char *); +DECL_SYSCALL0(getch); -DECL_SYSCALL1(writec, char); - -DECL_SYSCALL0(readc); - -DECL_SYSCALL0(get_pointers); - -DECL_SYSCALL1(alloc, uint32_t); +DECL_SYSCALL1(malloc, uint32_t); DECL_SYSCALL1(free, uint32_t); -- cgit v1.2.3