libgomp: omp_set_nested

1 
1 2.27 'omp_set_nested' - Enable/disable nested parallel regions
1 ==============================================================
1 
1 _Description_:
1      Enable or disable nested parallel regions, i.e., whether team
1      members are allowed to create new teams.  The function takes the
1      language-specific equivalent of 'true' and 'false', where 'true'
1      enables dynamic adjustment of team sizes and 'false' disables it.
1 
1 _C/C++_:
1      _Prototype_:   'void omp_set_nested(int nested);'
1 
1 _Fortran_:
1      _Interface_:   'subroutine omp_set_nested(nested)'
1                     'logical, intent(in) :: nested'
1 
1 _See also_:
1      ⇒OMP_NESTED, ⇒omp_get_nested
1 
1 _Reference_:
1      OpenMP specification v4.5 (http://www.openmp.org/), Section 3.2.10.
1