aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2012-06-14 02:37:32 -0400
committerGlenn Elliott <gelliott@cs.unc.edu>2012-06-14 02:37:32 -0400
commit836633b4ee918091913d701379f814394c939de7 (patch)
tree57f1d564954e7b2454481d4914446ee1dfb57eb8 /include
parent63360ea7ec23f403462e5335d4a3aed9d756a24e (diff)
Scheduling of PGM jobs.wip-rtas12-pgm
Diffstat (limited to 'include')
-rw-r--r--include/litmus/rt_param.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h
index a767e52882f4..5411f1251e57 100644
--- a/include/litmus/rt_param.h
+++ b/include/litmus/rt_param.h
@@ -129,8 +129,11 @@ struct pgm_consume
129struct rt_pgm { 129struct rt_pgm {
130 struct pgm_produce *produce; /* output and current state */ 130 struct pgm_produce *produce; /* output and current state */
131 struct pgm_consume *consume; /* input constraints and current state */ 131 struct pgm_consume *consume; /* input constraints and current state */
132 struct task_struct *root; /* root node of the PGM */ 132 struct task_struct *src; /* root node of the PGM */
133// struct task_struct *src; /* only not NULL if task is sink */ 133
134 /* only valid for source nodes */
135 struct completion children_ready;
136 atomic_t nr_children_pending;
134}; 137};
135 138
136#endif /* end PGM */ 139#endif /* end PGM */