summaryrefslogtreecommitdiff
path: root/src/user/lib/include/tce/syscall.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/lib/include/tce/syscall.h')
-rw-r--r--src/user/lib/include/tce/syscall.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/user/lib/include/tce/syscall.h b/src/user/lib/include/tce/syscall.h
index 5257a02..7cb4381 100644
--- a/src/user/lib/include/tce/syscall.h
+++ b/src/user/lib/include/tce/syscall.h
@@ -14,8 +14,7 @@ void thread_new(void (*entry)(void*), void *data);
void irq_wait(int number);
int proc_priv();
-int proc_setheap(size_t start, size_t end);
-int shm_create(size_t offset, size_t length);
-int shm_delete(size_t offset);
+void* sbrk(size_t size);
+void brk(void* ptr);
#endif