Searched refs:busy_thds (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/apr-util/misc/
H A Dapr_thread_pool.c72 struct apr_thread_list *busy_thds; member in struct:apr_thread_pool
117 me->busy_thds = apr_palloc(me->pool, sizeof(*me->busy_thds));
118 if (!me->busy_thds) {
121 APR_RING_INIT(me->busy_thds, apr_thread_list_elt, link);
259 APR_RING_INSERT_TAIL(me->busy_thds, elt, apr_thread_list_elt, link);
666 elt = APR_RING_FIRST(me->busy_thds);
667 while (elt != APR_RING_SENTINEL(me->busy_thds, apr_thread_list_elt, link)) {
687 elt = APR_RING_FIRST(me->busy_thds);
791 thds = me->busy_thds;
[all...]

Completed in 138 milliseconds