diff options
author | Marvin Borner | 2020-08-21 20:39:48 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-21 20:39:48 +0200 |
commit | f700ba6668dbdb91a03b2c5aa387eb4cabae8fcd (patch) | |
tree | b04a80efabb09c9da9726332ccd22cb5a325fe39 /kernel/features/proc.c | |
parent | 1339d96cea2c647991c178587008d6fc40772a78 (diff) |
Some things here and some things there
Diffstat (limited to 'kernel/features/proc.c')
-rw-r--r-- | kernel/features/proc.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/kernel/features/proc.c b/kernel/features/proc.c index b43b800..7eb6832 100644 --- a/kernel/features/proc.c +++ b/kernel/features/proc.c @@ -42,7 +42,7 @@ void scheduler(struct regs *regs) if (current->event) { // TODO: Modify and backup EIP - printf("Event %d for %d\n", current->event, current->pid); + printf("Event %d for pid %d\n", current->event, current->pid); // TODO: Clear bit after resolve current->event = 0; } @@ -89,8 +89,9 @@ void proc_attach(struct proc *proc) } } -void proc_exit() +void proc_exit(int status) { + printf("Process %d exited with status %d\n", current->pid, status); current->state = PROC_ASLEEP; } @@ -121,7 +122,14 @@ void proc_init() _eip = root->regs.eip; _esp = root->regs.esp; - ((u32 *)_esp)[1] = (u32)boot_passed->vbe; // First argument + + char *args[] = { "init", (char *)boot_passed->vbe, NULL }; + + ((u32 *)_esp)[0] = 2; // First argument (argc) + ((u32 *)_esp)[1] = (u32)args; // Second argument (argv) proc_jump_userspace(); + printf("Returned!\n"); + while (1) { + }; } |