Searched refs:qd (Results 1 – 1 of 1) sorted by relevance
29 struct qdata *qd; in child_thread_get() local34 qd = k_queue_peek_head(q); in child_thread_get()35 zassert_equal(qd->data, 0); in child_thread_get()36 qd = k_queue_peek_tail(q); in child_thread_get()37 zassert_equal(qd->data, (LIST_LEN * 2) - 1, in child_thread_get()38 "got %d expected %d", qd->data, (LIST_LEN * 2) - 1); in child_thread_get()41 qd = k_queue_get(q, K_FOREVER); in child_thread_get()43 zassert_equal(qd->data, i); in child_thread_get()44 if (qd->allocated) { in child_thread_get()46 zassert_is_null(qd->snode.next, NULL); in child_thread_get()[all …]