sched: add struct and object types for task and thread objects

This commit is contained in:
2023-03-06 11:08:26 +00:00
parent 1a413189ab
commit 902df83654
4 changed files with 77 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ include arch/$(SOCKS_ARCH)/config.mk
# Platform-independent kernel source files
####################################
KERNEL_SRC_DIRS := init kernel vm ds util obj test
KERNEL_SRC_DIRS := init kernel vm ds util obj sched test
KERNEL_C_FILES := $(foreach dir,$(KERNEL_SRC_DIRS),$(wildcard $(dir)/*.c))
KERNEL_OBJ := $(addprefix $(BUILD_DIR)/,$(KERNEL_C_FILES:.c=.o))