aboutsummaryrefslogtreecommitdiff
path: root/src/features/syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/syscall.c')
-rw-r--r--src/features/syscall.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/features/syscall.c b/src/features/syscall.c
index ebfff59..2279429 100644
--- a/src/features/syscall.c
+++ b/src/features/syscall.c
@@ -1,5 +1,6 @@
// MIT License, Copyright (c) 2020 Marvin Borner
+#include <cpu.h>
#include <interrupts.h>
#include <load.h>
#include <print.h>
@@ -11,7 +12,8 @@ void syscall_handler(struct regs *r)
struct proc *a = proc_make();
bin_load("/a", a);
- proc_jump(a);
+ sti();
+ hlt();
}
void syscall_init()