This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [gomp4.1] document more structures in libgomp.h
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Aldy Hernandez <aldyh at redhat dot com>
- Cc: gcc-patches <gcc-patches at gcc dot gnu dot org>
- Date: Fri, 28 Aug 2015 17:56:41 +0200
- Subject: Re: [gomp4.1] document more structures in libgomp.h
- Authentication-results: sourceware.org; auth=none
- References: <55E06E7A dot 5000002 at redhat dot com> <20150828143153 dot GN9425 at tucnak dot redhat dot com> <55E08408 dot 9050208 at redhat dot com>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
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