Home
last modified time | relevance | path

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

/xnu-10063.141.1/osfmk/kern/
H A Dsyscall_subr.c276 thread_t pulled_thread = thread_run_queue_remove_for_handoff(thread); in thread_switch() local
280 pulled_thread ? TRUE : FALSE, 0, 0); in thread_switch()
282 if (pulled_thread != THREAD_NULL) { in thread_switch()
293 thread_run(self, thread_switch_continue, (void *)(intptr_t)option, pulled_thread); in thread_switch()
360 thread_t pulled_thread = thread_prepare_for_handoff(thread, option); in thread_handoff_internal() local
364 pulled_thread ? TRUE : FALSE, 0, 0); in thread_handoff_internal()
372 if (pulled_thread != THREAD_NULL) { in thread_handoff_internal()
373 int result = thread_run(self, continuation, parameter, pulled_thread); in thread_handoff_internal()
H A Dsched_prim.c6299 thread_t pulled_thread = THREAD_NULL; in thread_run_queue_remove_for_handoff() local
6322 pulled_thread = thread; in thread_run_queue_remove_for_handoff()
6328 return pulled_thread; in thread_run_queue_remove_for_handoff()
6349 thread_t pulled_thread = THREAD_NULL; in thread_prepare_for_handoff() local
6369 pulled_thread = thread; in thread_prepare_for_handoff()
6375 pulled_thread = thread_run_queue_remove_for_handoff(thread); in thread_prepare_for_handoff()
6378 return pulled_thread; in thread_prepare_for_handoff()