From db684b8653d93f4a374d8d692bb0afb31db67987 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Thu, 28 Mar 2024 22:00:16 -0500 Subject: kernel: add a basic thread scheduler Add a basic thread scheduler. This should allow the kernel to schedule threads according to the round robin algorithm. Signed-off-by: Danny Holman --- arch/i386/make.config | 2 ++ 1 file changed, 2 insertions(+) (limited to 'arch/i386/make.config') diff --git a/arch/i386/make.config b/arch/i386/make.config index 8499f1a..d4d98a7 100644 --- a/arch/i386/make.config +++ b/arch/i386/make.config @@ -17,3 +17,5 @@ KERNEL_ARCH_OBJS=$(ARCHDIR)/boot/boot.o \ $(ARCHDIR)/kernel/paging.o \ $(ARCHDIR)/kernel/pmem.o \ $(ARCHDIR)/kernel/kmalloc.o \ + $(ARCHDIR)/kernel/jump_userspace.o \ + $(ARCHDIR)/kernel/switch_thread.o \ -- cgit v1.2.3