reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/openmp/runtime/src/kmp_settings.cpp
  295   if (*val > KMP_DEFAULT_STKSIZE * 16) // just a heuristics...
  296     *val = KMP_DEFAULT_STKSIZE * 16;
  297   if (*val < KMP_MIN_STKSIZE)
  298     *val = KMP_MIN_STKSIZE;
  299   if (*val > KMP_MAX_STKSIZE)
  300     *val = KMP_MAX_STKSIZE; // dead code currently, but may work in future