libgomp: omp_get_nested

1 
1 2.10 'omp_get_nested' - Nested parallel regions
1 ===============================================
1 
1 _Description_:
1      This function returns 'true' if nested parallel regions are
1      enabled, 'false' otherwise.  Here, 'true' and 'false' represent
1      their language-specific counterparts.
1 
1      Nested parallel regions may be initialized at startup by the
1      'OMP_NESTED' environment variable or at runtime using
1      'omp_set_nested'.  If undefined, nested parallel regions are
1      disabled by default.
1 
1 _C/C++_:
1      _Prototype_:   'int omp_get_nested(void);'
1 
1 _Fortran_:
1      _Interface_:   'logical function omp_get_nested()'
1 
1 _See also_:
1      ⇒omp_set_nested, ⇒OMP_NESTED
1 
1 _Reference_:
1      OpenMP specification v4.5 (http://www.openmp.org/), Section 3.2.11.
1