Home
last modified time | relevance | path

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

/xnu-11215/osfmk/kern/
H A Dsched_amp.c491 processor_set_t nset = pset; in sched_amp_steal_thread() local
505 nset = pcore_set; in sched_amp_steal_thread()
507 assert(nset != pset); in sched_amp_steal_thread()
512 pset = nset; in sched_amp_steal_thread()
666 nset = pcore_set; in sched_amp_choose_processor()
667 assert(nset != NULL); in sched_amp_choose_processor()
669 nset = ecore_set; in sched_amp_choose_processor()
670 assert(nset != NULL); in sched_amp_choose_processor()
673 if (nset != pset) { in sched_amp_choose_processor()
675 pset_lock(nset); in sched_amp_choose_processor()
[all …]
H A Dsched_amp_common.c225 should_spill_to_ecores(processor_set_t nset, thread_t thread) in should_spill_to_ecores() argument
227 if (nset->pset_cluster_type == PSET_AMP_E) { in should_spill_to_ecores()
247 if ((nset->recommended_bitmask & nset->cpu_state_map[PROCESSOR_IDLE]) != 0) { in should_spill_to_ecores()
252 …if ((sched_get_pset_load_average(nset, 0) >= sched_amp_spill_threshold(nset)) && /* There is alre… in should_spill_to_ecores()
H A Dsched_dualq.c457 processor_set_t nset = next_pset(cset); in sched_dualq_steal_thread() local
463 while (nset != pset) { in sched_dualq_steal_thread()
465 cset = nset; in sched_dualq_steal_thread()
475 nset = next_pset(cset); in sched_dualq_steal_thread()
H A Dsched_amp_common.h56 bool should_spill_to_ecores(processor_set_t nset, thread_t thread);
H A Dsfi.c300 processor_set_t pset, nset; in sfi_timer_global_off() local
351 nset = processor->processor_set; in sfi_timer_global_off()
352 if (nset != pset) { in sfi_timer_global_off()
354 pset = nset; in sfi_timer_global_off()
H A Dsched_prim.c2594 if (nset == starting_pset) { in choose_next_rt_processor_for_IPI()
4729 if (nset && (nset->stealable_rt_threads_earliest_deadline < target_deadline)) { in sched_rtlocal_steal_thread()
4731 target_pset = nset; in sched_rtlocal_steal_thread()
5233 nset = next_pset(nset); in choose_next_pset()
5246 } while (nset->online_processor_count < 1 && nset != pset); in choose_next_pset()
5248 return nset; in choose_next_pset()
5270 processor_set_t nset; in choose_processor() local
5439 nset = next_pset(pset); in choose_processor()
5692 nset = starting_pset; in choose_processor()
5694 nset = next_pset(pset); in choose_processor()
[all …]
/xnu-11215/osfmk/ipc/
H A Dmach_port.c1440 ipc_pset_t nset = ips_object_to_pset(ps_obj); in mach_port_move_member() local
1442 ipc_mqueue_add_locked(&port->ip_messages, nset, &link); in mach_port_move_member()
1443 ips_mq_unlock(nset); in mach_port_move_member()
1445 keep_waitq_set = &nset->ips_wqset; in mach_port_move_member()
/xnu-11215/bsd/kern/
H A Dkern_sig.c1148 sigset_t nset; in __pthread_sigmask() local
1161 error = copyin(set, &nset, sizeof(sigset_t)); in __pthread_sigmask()
1168 ut->uu_sigmask |= (nset & ~sigcantmask); in __pthread_sigmask()
1172 ut->uu_sigmask &= ~(nset); in __pthread_sigmask()
1177 ut->uu_sigmask = (nset & ~sigcantmask); in __pthread_sigmask()