diff options
author | Marvin Borner | 2020-08-06 20:41:07 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-06 20:41:07 +0200 |
commit | 8c5fef6e00b0afe7a4f72fe9f8c72ade1ce4c673 (patch) | |
tree | 30c0f549b24afc456e1f0b028cecfee7796ccf2b /src/features/syscall.c | |
parent | 9dbf8131d6aaff1617ef2bc7ebf54838f808688d (diff) |
Some context switch fixes.
I'm quite tired actually and I don't seem to find my mistakes...
Diffstat (limited to 'src/features/syscall.c')
-rw-r--r-- | src/features/syscall.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/features/syscall.c b/src/features/syscall.c index 2279429..3d012cf 100644 --- a/src/features/syscall.c +++ b/src/features/syscall.c @@ -5,15 +5,17 @@ #include <load.h> #include <print.h> #include <proc.h> +#include <str.h> +int i = 0; void syscall_handler(struct regs *r) { printf("[SYSCALL] %d\n", r->eax); struct proc *a = proc_make(); - bin_load("/a", a); - sti(); - hlt(); + bin_load(++i ? "/a" : "/b", a); + strcpy(a->name, "a"); + proc_print(); } void syscall_init() |