libgomp: omp_get_schedule

1 
1 2.16 'omp_get_schedule' - Obtain the runtime scheduling method
1 ==============================================================
1 
1 _Description_:
1      Obtain the runtime scheduling method.  The KIND argument will be
1      set to the value 'omp_sched_static', 'omp_sched_dynamic',
1      'omp_sched_guided' or 'omp_sched_auto'.  The second argument,
1      CHUNK_SIZE, is set to the chunk size.
1 
1 _C/C++_
1      _Prototype_:   'void omp_get_schedule(omp_sched_t *kind, int
1                     *chunk_size);'
1 
1 _Fortran_:
1      _Interface_:   'subroutine omp_get_schedule(kind, chunk_size)'
1                     'integer(kind=omp_sched_kind) kind'
1                     'integer chunk_size'
1 
1 _See also_:
1      ⇒omp_set_schedule, ⇒OMP_SCHEDULE
1 
1 _Reference_:
1      OpenMP specification v4.5 (http://www.openmp.org/), Section 3.2.13.
1