Process linked list

This commit is contained in:
2026-01-31 14:13:48 +01:00
parent 6e633b44b7
commit c46157fad0
8 changed files with 153 additions and 2 deletions

View File

@@ -5,6 +5,7 @@
#include "io/kbd/ps2.h"
#include <kernel.h>
#include <stdbool.h>
#include "sched/scheduler.h"
struct interrupt_descriptor idt[256];
struct idtr idt_reg;
@@ -187,6 +188,7 @@ struct cpu_status_t* interrupt_dispatch(struct cpu_status_t* context)
case 32:
//DEBUG("Timer Interrupt");
ticks++;
scheduler_schedule();
// Send an EOI so that we can continue having interrupts
outb(0x20, 0x20);
break;