Home
last modified time | relevance | path

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

/Zephyr-Core-3.6.0/lib/posix/options/
Dpthread.c84 static sys_dlist_t posix_thread_q[] = { variable
85 SYS_DLIST_STATIC_INIT(&posix_thread_q[POSIX_THREAD_READY_Q]),
86 SYS_DLIST_STATIC_INIT(&posix_thread_q[POSIX_THREAD_RUN_Q]),
87 SYS_DLIST_STATIC_INIT(&posix_thread_q[POSIX_THREAD_DONE_Q]),
99 sys_dlist_append(&posix_thread_q[qid], &t->q_node); in posix_thread_q_set()
453 SYS_DLIST_FOR_EACH_CONTAINER_SAFE(&posix_thread_q[POSIX_THREAD_DONE_Q], t, safe_t, q_node) { in posix_thread_recycle()
509 if (!sys_dlist_is_empty(&posix_thread_q[POSIX_THREAD_READY_Q])) { in pthread_create()
510 t = CONTAINER_OF(sys_dlist_get(&posix_thread_q[POSIX_THREAD_READY_Q]), in pthread_create()