diff options
Diffstat (limited to 'include/litmus/rt_param.h')
-rw-r--r-- | include/litmus/rt_param.h | 7 |
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 | |||
129 | struct rt_pgm { | 129 | struct 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 */ |