diff options
Diffstat (limited to 'kernel/features')
-rw-r--r-- | kernel/features/proc.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/kernel/features/proc.c b/kernel/features/proc.c index 021a3d6..438ded7 100644 --- a/kernel/features/proc.c +++ b/kernel/features/proc.c @@ -30,10 +30,7 @@ void scheduler(struct regs *regs) return; } - if (current && ((struct proc *)current->data)->state == PROC_RESOLVED) { - memcpy(regs, &((struct proc *)current->data)->regs_backup, sizeof(struct regs)); - ((struct proc *)current->data)->state = PROC_DEFAULT; - } + assert(proc_list->head); if (current) memcpy(&((struct proc *)current->data)->regs, regs, sizeof(struct regs)); @@ -43,15 +40,6 @@ void scheduler(struct regs *regs) else current = proc_list->head; - while (!current) { - if (!current->next || !current->next->data) { - assert(proc_list->head); - current = proc_list->head; - } else { - current = current->next; - } - } - memcpy(regs, &((struct proc *)current->data)->regs, sizeof(struct regs)); if (regs->cs != GDT_USER_CODE_OFFSET) { @@ -123,7 +111,7 @@ struct proc *proc_from_pid(u32 pid) void proc_exit(struct proc *proc, int status) { assert(proc); - printf("Process %d exited with status %d\n", proc->pid, status); + printf("Process %s exited with status %d\n", proc->name, status); struct node *iterator = proc_list->head; do { |