diff options
author | Danny Holman <dholman@gymli.org> | 2024-03-28 22:00:16 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2024-03-28 22:00:16 -0500 |
commit | db684b8653d93f4a374d8d692bb0afb31db67987 (patch) | |
tree | 83dc7939470b4c9302538fbf220c7a02fc249a51 /Makefile | |
parent | 3b66779d9a8325c77c6cfbf1565885f98da5378f (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-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 \ |