From 7e6454020ed1143e05e83a683606f318995458e5 Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Fri, 18 May 2012 16:16:07 +0200 Subject: Can now spawn new processes. --- src/user/lib/include/tce/syscall.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/user/lib/include') diff --git a/src/user/lib/include/tce/syscall.h b/src/user/lib/include/tce/syscall.h index 028b544..1811422 100644 --- a/src/user/lib/include/tce/syscall.h +++ b/src/user/lib/include/tce/syscall.h @@ -19,6 +19,9 @@ int proc_priv(); void* sbrk(size_t size); void brk(void* ptr); +int run(char* file, char** args); +int waitpid(int pid); + FILE open(char* filename, int mode); FILE open_relative(FILE root, char* filename, int mode); int stat(char* filename, file_info *info); -- cgit v1.2.3