From 84a8b41f4d4c444385e0d7ef058a57af07f0c2e1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 6 Jan 2020 00:06:45 +0100 Subject: Usermode based allocating works a bit now *a bit* --- src/userspace/syscall.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/userspace/syscall.h') diff --git a/src/userspace/syscall.h b/src/userspace/syscall.h index 60fb288..e46f453 100644 --- a/src/userspace/syscall.h +++ b/src/userspace/syscall.h @@ -76,8 +76,8 @@ DECL_SYSCALL0(readc); DECL_SYSCALL0(get_pointers); -DECL_SYSCALL1(paging_alloc, uint32_t); +DECL_SYSCALL1(alloc, uint32_t); -DECL_SYSCALL2(paging_free, uint32_t, uint32_t); +DECL_SYSCALL1(free, uint32_t); #endif -- cgit v1.2.3