Searched refs:current_thread (Results 1 – 5 of 5) sorted by relevance
209 t->tls[i] = current_thread->tls[i]; in thread_create_etc()393 current_thread->state = THREAD_DEATH; in thread_exit()394 current_thread->retcode = retcode; in thread_exit()402 current_thread->magic = 0; in thread_exit()405 if (current_thread->flags & THREAD_FLAG_FREE_STACK && current_thread->stack) { in thread_exit()487 oldthread = current_thread; in thread_resched()616 current_thread->state = THREAD_READY; in thread_yield()648 if (!thread_is_idle(current_thread)) in thread_preempt()711 current_thread->remaining_quantum--; in thread_timer_tick()814 strlcpy(current_thread->name, name, sizeof(current_thread->name)); in thread_set_name()[all …]
43 thread_t *current_thread = get_current_thread(); in initial_thread_func() local45 …thread_func: thread %p calling %p with arg %p\n", current_thread, current_thread->entry, current_t… in initial_thread_func()51 ret = current_thread->entry(current_thread->arg); in initial_thread_func()53 LTRACEF("initial_thread_func: thread %p exiting with %d\n", current_thread, ret); in initial_thread_func()
92 thread_t *current_thread; in x86_pfe_handler() local122 current_thread = get_current_thread(); in x86_pfe_handler()123 dump_thread(current_thread); in x86_pfe_handler()133 thread_detach(current_thread); in x86_pfe_handler()135 thread_exit(current_thread->retcode); in x86_pfe_handler()
63 struct thread *current_thread = get_current_thread(); in dump_fault_frame() local66 current_thread, current_thread ? current_thread->name : ""); in dump_fault_frame()
659 thread_t *current_thread = get_current_thread(); in vmm_free_aspace() local660 if (current_thread->aspace == aspace) { in vmm_free_aspace()662 current_thread->aspace = NULL; in vmm_free_aspace()
Completed in 9 milliseconds