Searched refs:iter_thread (Results 1 – 2 of 2) sorted by relevance
195 thread_t iter_thread = qe_element(iter, struct thread, runq_links); in check_rt_runq_consistency() local196 assert_thread_magic(iter_thread); in check_rt_runq_consistency()197 if (iter_thread == thread) { in check_rt_runq_consistency()200 assert(iter_thread->sched_pri == (i + BASEPRI_RTQUEUES)); in check_rt_runq_consistency()201 assert(iter_thread->realtime.deadline < RT_DEADLINE_NONE); in check_rt_runq_consistency()202 assert(iter_thread->realtime.constraint < RT_CONSTRAINT_NONE); in check_rt_runq_consistency()203 assert(previous_deadline <= iter_thread->realtime.deadline); in check_rt_runq_consistency()207 assert(rt_runq->pri_constraint == iter_thread->realtime.constraint); in check_rt_runq_consistency()209 previous_deadline = iter_thread->realtime.deadline; in check_rt_runq_consistency()4438 assert_thread_magic(iter_thread); in rt_runq_enqueue()[all …]
7957 thread_t iter_thread = THREAD_NULL; in task_findtid() local7970 queue_iterate(&task->threads, iter_thread, thread_t, task_threads) { in task_findtid()7971 if (iter_thread->thread_id == tid) { in task_findtid()7972 found_thread = iter_thread; in task_findtid()