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

/illumos-gate/usr/src/lib/libc/port/tpool/
H A Dthread_pool_impl.h72 tpool_active_t *tp_active; /* threads performing work */ member in struct:tpool
H A Dthread_pool.c44 ASSERT(tpool->tp_current == 0 && tpool->tp_active == NULL);
95 if (tpool->tp_head == NULL && tpool->tp_active == NULL) {
113 for (activepp = &tpool->tp_active;; activepp = &activep->tpa_next) {
186 active.tpa_next = tpool->tp_active;
187 tpool->tp_active = &active;
383 for (activep = tpool->tp_active; activep; activep = activep->tpa_next)
387 while (tpool->tp_active != NULL) {
435 while (tpool->tp_head != NULL || tpool->tp_active != NULL) {
499 for (activep = tpool->tp_active; activep; activep = activep->tpa_next) {
539 for (activep = tpool->tp_active; active
[all...]

Completed in 45 milliseconds