diff options
Diffstat (limited to 'kernel/features')
-rw-r--r-- | kernel/features/proc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/features/proc.c b/kernel/features/proc.c index 0c8f75c..d5cc82c 100644 --- a/kernel/features/proc.c +++ b/kernel/features/proc.c @@ -68,6 +68,9 @@ void scheduler(struct regs *regs) regs->eflags = EFLAGS_ALWAYS | EFLAGS_INTERRUPTS; } + if (current == idle_proc) + quantum = 0; + /* printf("{%d}", ((struct proc *)current->data)->pid); */ } @@ -481,6 +484,7 @@ void proc_init(void) ((u32 *)_esp)[0] = argc; // First argument (argc) ((u32 *)_esp)[1] = (u32)argv; // Second argument (argv) + printf("Jumping to userspace!\n"); proc_jump_userspace(); while (1) { }; |