diff options
author | Marvin Borner | 2020-11-05 17:30:39 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-05 17:32:53 +0100 |
commit | 63e86f792167e6cc2e9600d00b184a3c83fe7498 (patch) | |
tree | 31e2d583be3ebf34782f6ec37f6c524657c40686 /kernel/features/syscall.c | |
parent | 916fca2161e76de67a5106b90baf00a57f2a0512 (diff) |
Added warning flags and fixed them :)
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r-- | kernel/features/syscall.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index 798ca45..63badd9 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -43,8 +43,8 @@ void syscall_handler(struct regs *r) case SYS_EXEC: { char *path = (char *)r->ebx; struct proc *proc = proc_make(); - r->eax = bin_load(path, proc); - int argc = 3; // TODO: Add argc evaluator + r->eax = (u32)bin_load(path, proc); + u32 argc = 3; // TODO: Add argc evaluator char **argv = malloc(sizeof(*argv) * (argc + 1)); argv[0] = (char *)r->ecx; argv[1] = (char *)r->edx; @@ -54,11 +54,11 @@ void syscall_handler(struct regs *r) ((u32 *)proc->regs.useresp)[0] = argc; ((u32 *)proc->regs.useresp)[1] = (u32)argv; if (r->eax) - proc_exit(proc, r->eax); + proc_exit(proc, (int)r->eax); break; } case SYS_EXIT: { - proc_exit(proc_current(), r->ebx); + proc_exit(proc_current(), (int)r->ebx); break; } case SYS_YIELD: { @@ -98,7 +98,7 @@ void syscall_handler(struct regs *r) } } -void syscall_init() +void syscall_init(void) { idt_set_gate(0x80, (u32)isr128, 0x08, 0x8E); isr_install_handler(0x80, syscall_handler); |