Searched refs:new_thread (Results 1 - 5 of 5) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/osfmk/kern/
H A Dthread.c570 thread_t new_thread; local
577 new_thread = first_thread = current_thread();
579 new_thread = (thread_t)zalloc(thread_zone);
580 if (new_thread == NULL)
583 if (new_thread != first_thread)
584 *new_thread = thread_template;
588 new_thread->uthread = uthread_alloc(parent_task, new_thread);
589 if (new_thread->uthread == NULL) {
590 zfree(thread_zone, new_thread);
710 thread_create( task_t task, thread_t *new_thread) argument
738 thread_create_running( register task_t task, int flavor, thread_state_t new_state, mach_msg_type_number_t new_state_count, thread_t *new_thread) argument
785 kernel_thread_create( thread_continue_t continuation, void *parameter, integer_t priority, thread_t *new_thread) argument
819 kernel_thread_start_priority( thread_continue_t continuation, void *parameter, integer_t priority, thread_t *new_thread) argument
842 kernel_thread_start( thread_continue_t continuation, void *parameter, thread_t *new_thread) argument
[all...]
H A Dmachine.c280 thread_t new_thread, old_thread = processor->active_thread; local
283 new_thread = processor->idle_thread;
284 processor->active_thread = new_thread;
287 new_thread->last_processor = processor;
292 machine_set_current_thread(new_thread);
294 thread_dispatch(old_thread, new_thread);
H A Dsched_prim.c1173 thread_t new_thread = THREAD_NULL; local
1309 new_thread = steal_thread(pset);
1310 if (new_thread != THREAD_NULL)
1311 return (new_thread);
1347 new_thread = thread_select_idle(thread, processor);
1349 } while (new_thread == THREAD_NULL);
1351 return (new_thread);
1366 thread_t new_thread; local
1396 spllo(); new_thread = processor_idle(thread, processor);
1429 return (new_thread);
1809 register thread_t new_thread; local
1874 thread_run( thread_t self, thread_continue_t continuation, void *parameter, thread_t new_thread) argument
2856 thread_t new_thread; local
2976 thread_t new_thread; local
[all...]
H A Dsched_prim.h111 thread_t new_thread);
118 thread_t new_thread);
H A Dthread.h479 thread_t *new_thread);
485 thread_t *new_thread);
501 thread_t new_thread);
735 thread_t *new_thread);

Completed in 21 milliseconds