Home
last modified time | relevance | path

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

/xnu-8020.140.41/bsd/kern/
H A Dkern_memorystatus_notify.c1139 int curr_task_importance = 0; in vm_pressure_select_optimal_candidate_to_notify() local
1179 curr_task_importance = task_importance_estimate(t); in vm_pressure_select_optimal_candidate_to_notify()
1181 curr_task_importance = p->p_memstat_effectivepriority; in vm_pressure_select_optimal_candidate_to_notify()
1227 if ((curr_task_importance < selected_task_importance) || in vm_pressure_select_optimal_candidate_to_notify()
1228 ((curr_task_importance == selected_task_importance) && (resident_size > resident_max))) { in vm_pressure_select_optimal_candidate_to_notify()
1239 if ((curr_task_importance > selected_task_importance) || in vm_pressure_select_optimal_candidate_to_notify()
1240 ((curr_task_importance == selected_task_importance) && (resident_size > resident_max))) { in vm_pressure_select_optimal_candidate_to_notify()
1255 if ((curr_task_importance > selected_task_importance) || in vm_pressure_select_optimal_candidate_to_notify()
1256 ((curr_task_importance == selected_task_importance) && (resident_size > resident_max))) { in vm_pressure_select_optimal_candidate_to_notify()
1264 selected_task_importance = curr_task_importance; in vm_pressure_select_optimal_candidate_to_notify()