diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2013-11-26 14:42:45 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2014-02-19 15:53:00 -0500 |
commit | ecfe8654b8d9e433967792f8087b17e4dac3f076 (patch) | |
tree | 077b3c136e16d44afcad27c24bd79d6e4299fac1 /src/task.c | |
parent | 6a76ccc5091bd352860b7d74946c99d9d6e83369 (diff) |
Add support for job splitting.ecrts14-pgm-final
This patch adds support for job splittinig schedulers.
The default split factor for jobs is 1 (unchanged behavior).
Diffstat (limited to 'src/task.c')
-rw-r--r-- | src/task.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -49,6 +49,7 @@ int __create_rt_task(rt_fn_t rt_prog, void *arg, int cluster, | |||
49 | params.exec_cost = wcet; | 49 | params.exec_cost = wcet; |
50 | params.cls = class; | 50 | params.cls = class; |
51 | params.phase = 0; | 51 | params.phase = 0; |
52 | params.split = 1; | ||
52 | params.priority = priority; | 53 | params.priority = priority; |
53 | /* enforce budget for tasks that might not use sleep_next_period() */ | 54 | /* enforce budget for tasks that might not use sleep_next_period() */ |
54 | params.budget_policy = QUANTUM_ENFORCEMENT; | 55 | params.budget_policy = QUANTUM_ENFORCEMENT; |