This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [gomp4.1] document more structures in libgomp.h


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]