diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2008-05-23 02:45:34 -0400 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2008-05-23 02:45:34 -0400 |
commit | c4b2f8fda287a0e339b451c89dfcddbf28ea3d3d (patch) | |
tree | 097e165053475da333c1e5abc94f3b46ecfb1931 /litmus/Makefile | |
parent | af096ad5e6bb7ea899cdefb6edb40c6451955dfc (diff) |
LITMUS: Add the PFAIR plugin.RTSS08
This adds the PFAIR plugin. The implementation is based on an earlier version
developed by John Calandrino.
Features:
- supports aligned and staggered quanta
- supports early releasing
- uses mergable heaps to limit overheads
This version still has a couple of limitations:
- no support for sporadic; all tasks are assumed to be periodic
- tasks are limited to a maximum period of 1000 quanta
- overload (especially in the tick) is not handled gracefully
Diffstat (limited to 'litmus/Makefile')
-rw-r--r-- | litmus/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/litmus/Makefile b/litmus/Makefile index bfe393eb56..545203876a 100644 --- a/litmus/Makefile +++ b/litmus/Makefile | |||
@@ -3,9 +3,12 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y = sched_plugin.o litmus.o sched_trace.o \ | 5 | obj-y = sched_plugin.o litmus.o sched_trace.o \ |
6 | edf_common.o jobs.o\ | 6 | edf_common.o jobs.o \ |
7 | sched_gsn_edf.o sched_psn_edf.o sched_cedf.o \ | ||
8 | rt_domain.o fdso.o sync.o \ | 7 | rt_domain.o fdso.o sync.o \ |
9 | fmlp.o srp.o norqlock.o | 8 | fmlp.o srp.o norqlock.o \ |
9 | sched_gsn_edf.o \ | ||
10 | sched_psn_edf.o \ | ||
11 | sched_cedf.o \ | ||
12 | sched_pfair.o | ||
10 | 13 | ||
11 | obj-$(CONFIG_FEATHER_TRACE) += trace.o ft_event.o | 14 | obj-$(CONFIG_FEATHER_TRACE) += trace.o ft_event.o |