Home
last modified time | relevance | path

Searched refs:blocking_wait_queue (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/trusty/lk/kernel/
Dthread.c261 t->blocking_wait_queue = NULL; in thread_create_etc()
575 DEBUG_ASSERT(t->blocking_wait_queue == NULL); in thread_join()
1684 …dprintf(INFO, "\twait queue %p, wait queue ret %d\n", t->blocking_wait_queue, t->wait_queue_block_… in dump_thread()
1785 current_thread->blocking_wait_queue = wait; in wait_queue_block()
1847 t->blocking_wait_queue = NULL; in wait_queue_wake_one()
1913 t->blocking_wait_queue = NULL; in wait_queue_wake_all()
1983 DEBUG_ASSERT(t->blocking_wait_queue != NULL); in thread_unblock_from_wait_queue()
1984 DEBUG_ASSERT(t->blocking_wait_queue->magic == WAIT_QUEUE_MAGIC); in thread_unblock_from_wait_queue()
1988 t->blocking_wait_queue->count--; in thread_unblock_from_wait_queue()
1989 t->blocking_wait_queue = NULL; in thread_unblock_from_wait_queue()
[all …]
/aosp_15_r20/external/trusty/lk/include/kernel/
Dthread.h122 struct wait_queue *blocking_wait_queue; member
/aosp_15_r20/external/trusty/lk/app/threadtest/
Dthreadtest.c298 ASSERT_EQ(sleeping_thread->blocking_wait_queue, &queue); in TEST()