diff options
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r-- | kernel/features/syscall.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index b486deb..e6bcb83 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -39,6 +39,10 @@ void syscall_handler(struct regs *r) case SYS_EXEC: { char *path = (char *)r->ebx; struct proc *proc = proc_make(); + ((u32 *)proc->regs.esp)[0] = r->ecx; + ((u32 *)proc->regs.esp)[1] = r->edx; + ((u32 *)proc->regs.esp)[2] = r->esi; + ((u32 *)proc->regs.esp)[3] = r->edi; r->eax = bin_load(path, proc); break; } |