aboutsummaryrefslogtreecommitdiffstats
path: root/bin/rtspin.c
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2010-11-26 17:08:54 -0500
committerGlenn Elliott <gelliott@cs.unc.edu>2010-11-26 17:08:54 -0500
commite83917699a930e63a34a8b112258b1d5e4031048 (patch)
treeb43cbbcccda974be236724daea1035ad5f736d8c /bin/rtspin.c
parentc3566e210d4e466e97d84d4a190760c4e91766ac (diff)
Support for AEDZL
Added support for AEDZL. Users may specify feedback control parameters. If LITMUS_FP_ZERO is given, then task will default to Litmus's internal default (at this time, a = 0.102 and b = 0.303; a critically-damped system).
Diffstat (limited to 'bin/rtspin.c')
-rw-r--r--bin/rtspin.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/rtspin.c b/bin/rtspin.c
index 33919b1..650fcb3 100644
--- a/bin/rtspin.c
+++ b/bin/rtspin.c
@@ -225,7 +225,9 @@ int main(int argc, char** argv)
225 bail_out("could not migrate to target partition"); 225 bail_out("could not migrate to target partition");
226 } 226 }
227 227
228 ret = sporadic_task_ns(wcet, period, 0, cpu, class, 228 ret = sporadic_task_ns(wcet, period, 0,
229 LITMUS_FP_ZERO, LITMUS_FP_ZERO,
230 cpu, class,
229 want_enforcement ? PRECISE_ENFORCEMENT 231 want_enforcement ? PRECISE_ENFORCEMENT
230 : NO_ENFORCEMENT, 232 : NO_ENFORCEMENT,
231 migrate); 233 migrate);