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

/freebsd-current/sys/contrib/openzfs/lib/libtpool/
H A Dthread_pool_impl.h70 tpool_active_t *tp_active; /* threads performing work */ member in struct:tpool
H A Dthread_pool.c42 ASSERT(tpool->tp_current == 0 && tpool->tp_active == NULL);
93 if (tpool->tp_head == NULL && tpool->tp_active == NULL) {
112 for (activepp = &tpool->tp_active; ; activepp = &activep->tpa_next) {
187 active.tpa_next = tpool->tp_active;
188 tpool->tp_active = &active;
487 for (activep = tpool->tp_active; activep; activep = activep->tpa_next)
491 while (tpool->tp_active != NULL) {
539 while (tpool->tp_head != NULL || tpool->tp_active != NULL) {
603 for (activep = tpool->tp_active; activep; activep = activep->tpa_next) {

Completed in 56 milliseconds