This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [gomp4.1] document omp_get_max_task_priority and OMP_MAX_TASK_PRIORITY
- 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: Thu, 25 Jun 2015 23:20:03 +0200
- Subject: Re: [gomp4.1] document omp_get_max_task_priority and OMP_MAX_TASK_PRIORITY
- Authentication-results: sourceware.org; auth=none
- References: <558C6E9C dot 6010602 at redhat dot com>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Thu, Jun 25, 2015 at 02:11:56PM -0700, Aldy Hernandez wrote:
> commit 98e12d99f2e83cd235af0aebe6435a25c69e3137
> Author: Aldy Hernandez <aldyh@redhat.com>
> Date: Thu Jun 25 14:07:26 2015 -0700
>
> * libgomp.texi: Document omp_get_max_task_priority and
> OMP_MAX_TASK_PRIORITY.
Ok, thanks; with a minor nit fixed:
> +@node OMP_MAX_TASK_PRIORITY
> +@section @env{OMP_MAX_TASK_PRIORITY} -- Set the maximum priority
> +number that can be set for a task.
> +@cindex Environment Variable
> +@table @asis
> +@item @emph{Description}:
> +Specifies the initial value for the maximum priority value that can be
> +set for a task. The value of this variable shall be a positive
s/positive/non-negative/ , zero is allowed.
> +integer. If undefined, the default priority is 0.
Jakub