diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2009-12-17 21:23:36 -0500 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-29 17:05:45 -0400 |
commit | 4b38febbd59fd33542a343991262119eb9860f5e (patch) | |
tree | 1af88a0d354abe344c2c2869631f76a1806d75c3 /litmus/Makefile | |
parent | 22763c5cf3690a681551162c15d34d935308c8d7 (diff) |
[ported from 2008.3] Core LITMUS^RT infrastructure
Port 2008.3 Core LITMUS^RT infrastructure to Linux 2.6.32
litmus_sched_class implements 4 new methods:
- prio_changed:
void
- switched_to:
void
- get_rr_interval:
return infinity (i.e., 0)
- select_task_rq:
return current cpu
Diffstat (limited to 'litmus/Makefile')
-rw-r--r-- | litmus/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/litmus/Makefile b/litmus/Makefile new file mode 100644 index 000000000000..f4c2d564cd0b --- /dev/null +++ b/litmus/Makefile | |||
@@ -0,0 +1,12 @@ | |||
1 | # | ||
2 | # Makefile for LITMUS^RT | ||
3 | # | ||
4 | |||
5 | obj-y = sched_plugin.o litmus.o \ | ||
6 | jobs.o \ | ||
7 | heap.o | ||
8 | |||
9 | obj-$(CONFIG_FEATHER_TRACE) += ft_event.o ftdev.o | ||
10 | obj-$(CONFIG_SCHED_TASK_TRACE) += sched_task_trace.o | ||
11 | obj-$(CONFIG_SCHED_DEBUG_TRACE) += sched_trace.o | ||
12 | obj-$(CONFIG_SCHED_OVERHEAD_TRACE) += trace.o | ||