Home
last modified time | relevance | path

Searched refs:curr_task_importance (Results 1 – 1 of 1) sorted by relevance

/xnu-12377.1.9/bsd/kern/
H A Dkern_memorystatus_notify.c1121 int curr_task_importance = 0; in vm_pressure_select_optimal_candidate_to_notify() local
1161 curr_task_importance = task_importance_estimate(t); in vm_pressure_select_optimal_candidate_to_notify()
1163 curr_task_importance = p->p_memstat_effectivepriority; in vm_pressure_select_optimal_candidate_to_notify()
1209 if ((curr_task_importance < selected_task_importance) || in vm_pressure_select_optimal_candidate_to_notify()
1210 ((curr_task_importance == selected_task_importance) && (resident_size > resident_max))) { in vm_pressure_select_optimal_candidate_to_notify()
1221 if ((curr_task_importance > selected_task_importance) || in vm_pressure_select_optimal_candidate_to_notify()
1222 ((curr_task_importance == selected_task_importance) && (resident_size > resident_max))) { in vm_pressure_select_optimal_candidate_to_notify()
1237 if ((curr_task_importance > selected_task_importance) || in vm_pressure_select_optimal_candidate_to_notify()
1238 ((curr_task_importance == selected_task_importance) && (resident_size > resident_max))) { in vm_pressure_select_optimal_candidate_to_notify()
1246 selected_task_importance = curr_task_importance; in vm_pressure_select_optimal_candidate_to_notify()