diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2013-11-26 14:42:45 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2013-11-26 14:42:45 -0500 |
commit | d6e5eee7b7863d179e95962f0144c3daeba35a44 (patch) | |
tree | 5de25724dea46139ff06b57b4c92bb04a6fe50c6 /src/litmus.c | |
parent | 6ec2bbce01c4d4287504d4d6b1df7c4d3870abce (diff) |
Add support for job splitting.wip-pgm
This patch adds support for job splittinig schedulers.
The default split factor for jobs is 1 (unchanged behavior).
Diffstat (limited to 'src/litmus.c')
-rw-r--r-- | src/litmus.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/litmus.c b/src/litmus.c index dce8e1b..febd7ed 100644 --- a/src/litmus.c +++ b/src/litmus.c | |||
@@ -103,6 +103,7 @@ void init_rt_task_param(struct rt_task* tp) | |||
103 | tp->priority = LITMUS_LOWEST_PRIORITY; | 103 | tp->priority = LITMUS_LOWEST_PRIORITY; |
104 | tp->budget_policy = NO_ENFORCEMENT; | 104 | tp->budget_policy = NO_ENFORCEMENT; |
105 | tp->release_policy = TASK_SPORADIC; | 105 | tp->release_policy = TASK_SPORADIC; |
106 | tp->split = 1; | ||
106 | } | 107 | } |
107 | 108 | ||
108 | task_class_t str2class(const char* str) | 109 | task_class_t str2class(const char* str) |