Home
last modified time | relevance | path

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

/netbsd-src/external/cddl/osnet/lib/libzfs/
H A Dthread_pool.c77 if (tpool->tp_head == NULL && tpool->tp_active == NULL) { in notify_waiters()
96 for (activepp = &tpool->tp_active;; activepp = &activep->tpa_next) { in job_cleanup()
170 active.tpa_next = tpool->tp_active; in tpool_worker()
171 tpool->tp_active = &active; in tpool_worker()
313 for (activep = tpool->tp_active; activep; activep = activep->tpa_next) in tpool_destroy()
317 while (tpool->tp_active != NULL) { in tpool_destroy()
362 while (tpool->tp_head != NULL || tpool->tp_active != NULL) { in tpool_wait()
418 for (activep = tpool->tp_active; activep; activep = activep->tpa_next) { in tpool_member()
H A Dthread_pool_impl.h76 tpool_active_t *tp_active; /* threads performing work */ member