Searched refs:MAXPRI_THROTTLE (Results 1 - 8 of 8) sorted by relevance

/xnu-2782.1.97/osfmk/kern/
H A Dthread_policy.c58 .qos_pri[THREAD_QOS_BACKGROUND] = MAXPRI_THROTTLE,
59 .qos_pri[THREAD_QOS_MAINTENANCE] = MAXPRI_THROTTLE,
853 /* A thread is 'throttled' when its max priority is below MAXPRI_THROTTLE */
854 if ((max_priority > MAXPRI_THROTTLE) && (old_max_priority <= MAXPRI_THROTTLE)) {
856 } else if ((max_priority <= MAXPRI_THROTTLE) && (old_max_priority > MAXPRI_THROTTLE)) {
H A Dpriority.c472 if (sched_use_combined_fgbg_decay && ((thread)->task->max_priority > MAXPRI_THROTTLE) && (new_pri == MAXPRI_THROTTLE)) {
H A Dsched.h161 #define MAXPRI_THROTTLE (MINPRI + 4) /* 4 */ macro
H A Dsched_multiq.c226 #define DEFAULT_DRAIN_DEPTH_LIMIT MAXPRI_THROTTLE
H A Dthread_call.c220 return MAXPRI_THROTTLE;
H A Dtask_policy.c1261 priority = MAXPRI_THROTTLE;
1262 max_priority = MAXPRI_THROTTLE;
H A Dthread.c923 if (parent_task->max_priority <= MAXPRI_THROTTLE) {
H A Dsched_prim.c4524 ((thread->sched_pri <= MAXPRI_THROTTLE) && (thread->priority <= MAXPRI_THROTTLE))) {
4526 * Background urgency applied when thread priority is MAXPRI_THROTTLE or lower and thread is not promoted

Completed in 54 milliseconds