Lines Matching defs:max_active_levels
2059 master_th->th.th_current_task->td_icvs.max_active_levels)) ||
2113 master_th->th.th_current_task->td_icvs.max_active_levels));
2866 /* Changes max_active_levels */
2867 void __kmp_set_max_active_levels(int gtid, int max_active_levels) {
2870 KF_TRACE(10, ("__kmp_set_max_active_levels: new max_active_levels for thread "
2872 gtid, max_active_levels));
2875 // validate max_active_levels
2876 if (max_active_levels < 0) {
2877 KMP_WARNING(ActiveLevelsNegative, max_active_levels);
2883 "max_active_levels for thread %d = (%d)\n",
2884 gtid, max_active_levels));
2887 if (max_active_levels <= KMP_MAX_ACTIVE_LEVELS_LIMIT) {
2888 // it's OK, the max_active_levels is within the valid range: [ 0;
2892 KMP_WARNING(ActiveLevelsExceedLimit, max_active_levels,
2894 max_active_levels = KMP_MAX_ACTIVE_LEVELS_LIMIT;
2901 "max_active_levels for thread %d = (%d)\n",
2902 gtid, max_active_levels));
2908 set__max_active_levels(thread, max_active_levels);
2911 /* Gets max_active_levels */
2923 thread->th.th_current_task->td_icvs.max_active_levels));
2924 return thread->th.th_current_task->td_icvs.max_active_levels;
3321 __kmp_dflt_max_active_levels, // int max_active_levels; //internal control
3322 // for max_active_levels