aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_exec.c
diff options
context:
space:
mode:
authorMarvin Borner2020-05-07 18:10:22 +0200
committerMarvin Borner2020-05-07 18:10:22 +0200
commit4286b14839c0c4ec016d816e426660f6685ae349 (patch)
treeccfefa4313d012fb78d8252cff98d27dfd187dc8 /src/kernel/syscall/actions/sys_exec.c
parent130121dd61a9adf70d1800ceb03007275bfb589d (diff)
Fixed many bugs with wait() and fork()
This also adds many race conditions which really need to be fixed..
Diffstat (limited to 'src/kernel/syscall/actions/sys_exec.c')
-rw-r--r--src/kernel/syscall/actions/sys_exec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/kernel/syscall/actions/sys_exec.c b/src/kernel/syscall/actions/sys_exec.c
index 049d085..99c6539 100644
--- a/src/kernel/syscall/actions/sys_exec.c
+++ b/src/kernel/syscall/actions/sys_exec.c
@@ -1,5 +1,6 @@
#include <stdint.h>
#include <tasks/process.h>
+#include <io/io.h>
u32 sys_exec(char *path)
{