diff options
author | Marvin Borner | 2021-02-21 15:45:41 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-21 15:45:41 +0100 |
commit | afeb7e4f00eff33e9e1cfcb766825e7c87f5f1d1 (patch) | |
tree | 87572c38c6cfd3bf49119ecb63de2e8c3ad4fb02 /kernel/features | |
parent | 17b83714ecc713f3faebf668a3d286e531f41859 (diff) |
Activated SSE/FPU features for better performance
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) { }; |