On Fri, Aug 28, 2015 at 08:53:44AM -0700, Aldy Hernandez wrote: > @@ -311,22 +313,35 @@ struct gomp_taskwait > > struct gomp_task > { > + /* Parent circular list. See children description below. */ > struct gomp_task *parent; > + /* Circular list representing the children of this task. > + > + In this list we first have parent_depends_on ready to run tasks, > + then !parent_depends_on ready to run tasks, then already running > + tasks, and finally the rest of the tasks. */
I don't think we have ", and finally the rest of the tasks", so please leave that out. Ok with that change. Jakub