diff options
author | Marvin Borner | 2020-01-06 00:06:45 +0100 |
---|---|---|
committer | Marvin Borner | 2020-01-06 00:06:45 +0100 |
commit | 84a8b41f4d4c444385e0d7ef058a57af07f0c2e1 (patch) | |
tree | 71184009c6fc25c3ee1b6d097d5af6705325419a /src/userspace/syscall.h | |
parent | 9390f6408884d0631e5d9865150851d53e2d6aec (diff) |
Usermode based allocating works a bit now
*a bit*
Diffstat (limited to 'src/userspace/syscall.h')
-rw-r--r-- | src/userspace/syscall.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |