summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-03-28 22:00:16 -0500
committerDanny Holman <dholman@gymli.org>2024-03-28 22:00:16 -0500
commitdb684b8653d93f4a374d8d692bb0afb31db67987 (patch)
tree83dc7939470b4c9302538fbf220c7a02fc249a51 /Makefile
parent3b66779d9a8325c77c6cfbf1565885f98da5378f (diff)
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 <dholman@gymli.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 874f614..043e883 100644
--- a/Makefile
+++ b/Makefile
@@ -29,6 +29,7 @@ KERNEL_OBJS=$(KERNEL_ARCH_OBJS) \
kernel/string.o \
kernel/io.o \
kernel/panic.o \
+ kernel/sched.o \
OBJS=$(ARCHDIR)/boot/crti.o \
$(ARCHDIR)/crtbegin.o \