Home
last modified time | relevance | path

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

/xnu-12377.41.6/osfmk/kern/
H A Dsyscall_subr.c278 thread_t pulled_thread = thread_run_queue_remove_for_handoff(thread); in thread_switch() local
282 pulled_thread ? TRUE : FALSE, 0, 0); in thread_switch()
284 if (pulled_thread != THREAD_NULL) { in thread_switch()
299 thread_run(self, thread_switch_continue, (void *)(intptr_t)option, pulled_thread); in thread_switch()
366 thread_t pulled_thread = thread_prepare_for_handoff(thread, option); in thread_handoff_internal() local
370 pulled_thread ? TRUE : FALSE, 0, 0); in thread_handoff_internal()
378 if (pulled_thread != THREAD_NULL) { in thread_handoff_internal()
383 int result = thread_run(self, continuation, parameter, pulled_thread); in thread_handoff_internal()
H A Dsched_prim.c6026 thread_t pulled_thread = THREAD_NULL; in thread_run_queue_remove_for_handoff() local
6051 pulled_thread = thread; in thread_run_queue_remove_for_handoff()
6057 return pulled_thread; in thread_run_queue_remove_for_handoff()
6078 thread_t pulled_thread = THREAD_NULL; in thread_prepare_for_handoff() local
6100 pulled_thread = thread; in thread_prepare_for_handoff()
6106 pulled_thread = thread_run_queue_remove_for_handoff(thread); in thread_prepare_for_handoff()
6109 return pulled_thread; in thread_prepare_for_handoff()