Home
last modified time | relevance | path

Searched refs:qid (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/lib/posix/options/
Dposix_internal.h66 uint8_t qid; member
Dpthread.c95 static inline void posix_thread_q_set(struct posix_thread *t, enum posix_thread_qid qid) in posix_thread_q_set() argument
97 switch (qid) { in posix_thread_q_set()
101 sys_dlist_append(&posix_thread_q[qid], &t->q_node); in posix_thread_q_set()
102 t->qid = qid; in posix_thread_q_set()
105 __ASSERT(false, "cannot set invalid qid %d for posix thread %p", qid, t); in posix_thread_q_set()
112 switch (t->qid) { in posix_thread_q_get()
116 return t->qid; in posix_thread_q_get()
118 __ASSERT(false, "posix thread %p has invalid qid: %d", t, t->qid); in posix_thread_q_get()