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

/freebsd-13-stable/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.c41 ASSERT(tpool->tp_current == 0 && tpool->tp_active == NULL);
92 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;
475 for (activep = tpool->tp_active; activep; activep = activep->tpa_next)
479 while (tpool->tp_active != NULL) {
527 while (tpool->tp_head != NULL || tpool->tp_active != NULL) {
591 for (activep = tpool->tp_active; activep; activep = activep->tpa_next) {

Completed in 49 milliseconds