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/kernel/syscall/syscall.h | |
parent | 9390f6408884d0631e5d9865150851d53e2d6aec (diff) |
Usermode based allocating works a bit now
*a bit*
Diffstat (limited to 'src/kernel/syscall/syscall.h')
-rw-r--r-- | src/kernel/syscall/syscall.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/syscall/syscall.h b/src/kernel/syscall/syscall.h index ae69800..229cf04 100644 --- a/src/kernel/syscall/syscall.h +++ b/src/kernel/syscall/syscall.h @@ -15,8 +15,8 @@ uint32_t sys_readc(char *ch); uint32_t sys_get_pointers(); -uint32_t sys_paging_alloc(uint32_t count); +uint32_t sys_alloc(uint32_t count); -uint32_t sys_paging_free(uint32_t virt, uint32_t count); +uint32_t sys_free(uint32_t ptr); #endif
\ No newline at end of file |