Home
last modified time | relevance | path

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

/xnu-8796.141.3/osfmk/kern/
H A Dsyscall_subr.c110 result = SCHED(thread_should_yield)(myprocessor, current_thread()); in swtch_continue()
127 if (!SCHED(thread_should_yield)(myprocessor, current_thread())) { in swtch()
147 result = SCHED(thread_should_yield)(myprocessor, current_thread()); in swtch_pri_continue()
164 if (!SCHED(thread_should_yield)(myprocessor, current_thread())) { in swtch_pri()
306 bool should_yield = SCHED(thread_should_yield)(current_processor(), current_thread()); in thread_switch()
606 if (!SCHED(thread_should_yield)(myprocessor, self)) { in thread_yield_internal()
H A Dsched_prim.c150 return os_atomic_load(&SCHED(rt_runq)(pset)->count, relaxed); in rt_runq_count()
156 return os_atomic_load_wide(&SCHED(rt_runq)(pset)->earliest_deadline, relaxed); in rt_runq_earliest_deadline()
163 rt_queue_t rt_run_queue = SCHED(rt_runq)(pset); in rt_runq_priority()
247 return os_atomic_load(&SCHED(rt_runq)(pset)->constraint, relaxed) <= rt_constraint_threshold; in rt_runq_is_low_latency()
440 kprintf("Scheduler: Default of %s\n", SCHED(sched_name)); in sched_init()
457 strlcpy(sched_string, SCHED(sched_name), sizeof(sched_string)); in sched_init()
461 SCHED(init)(); in sched_init()
462 SCHED(rt_init)(&pset0); in sched_init()
465 SCHED(pset_init)(&pset0); in sched_init()
466 SCHED(processor_init)(master_processor); in sched_init()
[all …]
H A Dpriority.c199 if (SCHED(can_update_priority)(thread)) { in thread_quantum_expire()
200 SCHED(update_priority)(thread); in thread_quantum_expire()
202 SCHED(lightweight_update_priority)(thread); in thread_quantum_expire()
206 SCHED(quantum_expire)(thread); in thread_quantum_expire()
325 SCHED(update_thread_bucket)(thread); in sched_set_thread_base_priority()
390 priority = (int16_t)SCHED(compute_timeshare_priority)(thread); in thread_recompute_sched_pri()
967 SCHED(update_thread_bucket)(thread); in sched_set_thread_mode()
H A Dsched_multiq.c403 if (!SCHED(sched_groups_enabled)) { in sched_group_create()
427 if (!SCHED(sched_groups_enabled)) { in sched_group_destroy()
636 if (SCHED(priority_is_urgent)(rq->highq)) { in entry_queue_dequeue_entry()
679 if (SCHED(priority_is_urgent)(sched_pri)) { in entry_queue_enqueue_entry()
710 if (SCHED(priority_is_urgent)(sched_pri)) { in entry_queue_remove_entry()
769 if (SCHED(priority_is_urgent)(rq->highq)) { in group_run_queue_dequeue_thread()
815 if (SCHED(priority_is_urgent)(thread_pri)) { in group_run_queue_enqueue_thread()
844 if (SCHED(priority_is_urgent)(thread_pri)) { in group_run_queue_remove_thread()
H A Dsched_prim.h818 #define SCHED(f) (sched_edge_dispatch.f) macro
821 #define SCHED(f) (sched_amp_dispatch.f) macro
828 #define SCHED(f) (sched_clutch_dispatch.f) macro
831 #define SCHED(f) (sched_dualq_dispatch.f) macro
H A Dsched_traditional.c369 if (SCHED(priority_is_urgent)(pri)) { in sched_traditional_choose_thread_from_runq()
552 if (SCHED(priority_is_urgent)(pri)) { in sched_traditional_processor_queue_shutdown()
675 if (SCHED(priority_is_urgent)(pri)) { in sched_traditional_steal_processor_thread()
H A Dprocessor.c254 SCHED(processor_init)(processor); in processor_init()
507 if (SCHED(multiple_psets_enabled) == FALSE) { in pset_create()
613 SCHED(pset_init)(pset); in pset_init()
614 SCHED(rt_init)(pset); in pset_init()
H A Dhost.c260 quantum_time = SCHED(initial_quantum_size)(THREAD_NULL); in host_info()
985 out->ps_runq_count_sum = SCHED(processor_runq_stats_count_sum)(processor); in get_sched_statistics()
1000 out->ps_runq_count_sum = SCHED(rt_runq_count_sum)(); in get_sched_statistics()
H A Dmachine.c201 SCHED(pset_made_schedulable)(processor, pset, false); in processor_up()
446 SCHED(processor_queue_shutdown)(processor); in processor_doshutdown()
448 SCHED(rt_queue_shutdown)(processor); in processor_doshutdown()
H A Dthread.c1519 new_thread->sched_mode = SCHED(initial_thread_sched_mode)(parent_task); in thread_create_internal()
1978 if (SCHED(can_update_priority)(thread)) { in retrieve_thread_basic_info()
1979 SCHED(update_priority)(thread); in retrieve_thread_basic_info()
2159 quantum_time = SCHED(initial_quantum_size)(THREAD_NULL); in thread_info_internal()
3638 return (uint64_t) (SCHED(initial_quantum_size)(thread) / 2); in thread_workq_quantum_size()
H A Dstartup.c925 SCHED(run_count_incr)(thread); in load_context()
H A Dthread_group.c1368 SCHED(thread_group_recommendation_change)(tg, new_recommendation); in sched_perfcontrol_thread_group_recommend()
H A Dsched_clutch.c997 if (SCHED(priority_is_urgent)(thread->sched_pri)) { in sched_clutch_root_urgency_inc()
1017 if (SCHED(priority_is_urgent)(thread->sched_pri)) { in sched_clutch_root_urgency_dec()
H A Dthread_policy.c1259 sched_mode_t newmode = SCHED(initial_thread_sched_mode)(get_threadtask(thread)); in thread_policy_reset()
H A Dtask.c5253 quantum_time = SCHED(initial_quantum_size)(THREAD_NULL); in task_info()
/xnu-8796.141.3/doc/
H A Dsched_clutch_edge.md246SCHED(steal_thread)` scheduler callout is invoked when the processor does not find any thread for …
260 …turn THREAD_NULL for the steal callout and perform rebalancing as part of SCHED(processor_balance)…
267 If `SCHED(steal_thread)` did not return a thread for the processor, it indicates that the processor…
/xnu-8796.141.3/osfmk/arm64/
H A Dmachine_routines.c659 if (SCHED(cpu_init_completed) != NULL) { in ml_cpu_init_completed()
660 SCHED(cpu_init_completed)(); in ml_cpu_init_completed()