From 50858d043cbd6f61cc091c6772f981ca2d6cca6b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 29 Apr 2020 00:39:24 +0200 Subject: Added basic exec calls for init and started libc --- src/kernel/syscall/syscall.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/kernel/syscall/syscall.h') diff --git a/src/kernel/syscall/syscall.h b/src/kernel/syscall/syscall.h index b2bdc6d..5c21d58 100644 --- a/src/kernel/syscall/syscall.h +++ b/src/kernel/syscall/syscall.h @@ -7,6 +7,8 @@ extern void idt_syscall(); void syscalls_install(); +uint32_t sys_exec(char *path); + uint32_t sys_putch(char ch); uint32_t sys_getch(); @@ -15,4 +17,4 @@ uint32_t sys_malloc(uint32_t count); uint32_t sys_free(uint32_t ptr); -#endif \ No newline at end of file +#endif -- cgit v1.2.3