aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/syscall.c
diff options
context:
space:
mode:
authorMarvin Borner2020-01-06 00:06:45 +0100
committerMarvin Borner2020-01-06 00:06:45 +0100
commit84a8b41f4d4c444385e0d7ef058a57af07f0c2e1 (patch)
tree71184009c6fc25c3ee1b6d097d5af6705325419a /src/userspace/syscall.c
parent9390f6408884d0631e5d9865150851d53e2d6aec (diff)
Usermode based allocating works a bit now
*a bit*
Diffstat (limited to 'src/userspace/syscall.c')
-rw-r--r--src/userspace/syscall.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/userspace/syscall.c b/src/userspace/syscall.c
index 35e6d50..132cd49 100644
--- a/src/userspace/syscall.c
+++ b/src/userspace/syscall.c
@@ -15,6 +15,6 @@ DEFN_SYSCALL0(readc, 4);
DEFN_SYSCALL0(get_pointers, 5);
-DEFN_SYSCALL1(paging_alloc, 6, uint32_t);
+DEFN_SYSCALL1(alloc, 6, uint32_t);
-DEFN_SYSCALL2(paging_free, 7, uint32_t, uint32_t); \ No newline at end of file
+DEFN_SYSCALL1(free, 7, uint32_t); \ No newline at end of file