更新了CFS调度器类的学习实例和博客信息...

This commit is contained in:
gatieme
2016-07-29 22:00:41 +08:00
parent 38c4eb9f01
commit 75a59c184c
14 changed files with 1441 additions and 8 deletions
+18
View File
@@ -0,0 +1,18 @@
ifneq ($(KERNELRELEASE),)
obj-m := hello.o
else
KERNELDIR ?= /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
all:
make -C $(KERNELDIR) M=$(PWD) modules
clean:
make -C $(KERNELDIR) M=$(PWD) clean
endif