diff options
author | Tobias Burnus <tburnus@baylibre.com> | 2024-09-26 17:25:34 +0200 |
---|---|---|
committer | Tobias Burnus <tburnus@baylibre.com> | 2024-09-26 17:25:34 +0200 |
commit | 9ec258bf65e6ae856491f607a987fe15b5385866 (patch) | |
tree | ed1cd1774dbfe2b6fded3b2af8c0ab5d6f318ad2 | |
parent | 819098dc71f2079aedc15a904ab5f17f0788d991 (diff) | |
download | gcc-9ec258bf65e6ae856491f607a987fe15b5385866.zip gcc-9ec258bf65e6ae856491f607a987fe15b5385866.tar.gz gcc-9ec258bf65e6ae856491f607a987fe15b5385866.tar.bz2 |
libgomp.texi: Fix deprecation note for omp_{get,set}_nested + OMP_NESTED
libgomp/ChangeLog:
* libgomp.texi (omp_get_nested,omp_set_nested, OMP_NESTED): Fix
note about deprecation - correct is 5.0 not 5.2.
-rw-r--r-- | libgomp/libgomp.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libgomp/libgomp.texi b/libgomp/libgomp.texi index 29f5419..22eff1d 100644 --- a/libgomp/libgomp.texi +++ b/libgomp/libgomp.texi @@ -937,7 +937,7 @@ active nested regions to the maximum supported. Disabling nested parallel regions sets the maximum number of active nested regions to one. Note that the @code{omp_set_nested} API routine was deprecated -in the OpenMP specification 5.2 in favor of @code{omp_set_max_active_levels}. +in the OpenMP specification 5.0 in favor of @code{omp_set_max_active_levels}. @item @emph{C/C++}: @multitable @columnfractions .20 .80 @@ -984,7 +984,7 @@ regions with @code{omp_set_max_active_levels} to one to disable, or above one to enable. Note that the @code{omp_get_nested} API routine was deprecated -in the OpenMP specification 5.2 in favor of @code{omp_get_max_active_levels}. +in the OpenMP specification 5.0 in favor of @code{omp_get_max_active_levels}. @item @emph{C/C++}: @multitable @columnfractions .20 .80 @@ -3934,7 +3934,7 @@ setting. If both are undefined, nested parallel regions are enabled if more than one item, otherwise they are disabled by default. Note that the @code{OMP_NESTED} environment variable was deprecated in -the OpenMP specification 5.2 in favor of @code{OMP_MAX_ACTIVE_LEVELS}. +the OpenMP specification 5.0 in favor of @code{OMP_MAX_ACTIVE_LEVELS}. @item @emph{See also}: @ref{omp_set_max_active_levels}, @ref{omp_set_nested}, |