diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2009-12-17 21:23:36 -0500 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2009-12-17 21:23:36 -0500 |
commit | 0fc918fd60c7f6b2ed5783b6be7886de178704f0 (patch) | |
tree | fc41661176a9fea1f63312f70be91cf05f693119 /Makefile | |
parent | 22763c5cf3690a681551162c15d34d935308c8d7 (diff) |
Core LITMUS^RT infrastructure.
to be merged:
- SRP (sched.c)
- feather-trace implementation (to be fixed)
- sync support (KConfig)
litmus_sched_class implements 3 new methods:
.prio_changed:
void
.switched_to:
void
.get_rr_interval:
return infinity (i.e., 0)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ | |||
1 | VERSION = 2 | 1 | VERSION = 2 |
2 | PATCHLEVEL = 6 | 2 | PATCHLEVEL = 6 |
3 | SUBLEVEL = 32 | 3 | SUBLEVEL = 32 |
4 | EXTRAVERSION = | 4 | EXTRAVERSION =-litmus2010 |
5 | NAME = Man-Eating Seals of Antiquity | 5 | NAME = Man-Eating Seals of Antiquity |
6 | 6 | ||
7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
@@ -644,7 +644,7 @@ export mod_strip_cmd | |||
644 | 644 | ||
645 | 645 | ||
646 | ifeq ($(KBUILD_EXTMOD),) | 646 | ifeq ($(KBUILD_EXTMOD),) |
647 | core-y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/ | 647 | core-y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/ litmus/ |
648 | 648 | ||
649 | vmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \ | 649 | vmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \ |
650 | $(core-y) $(core-m) $(drivers-y) $(drivers-m) \ | 650 | $(core-y) $(core-m) $(drivers-y) $(drivers-m) \ |