Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libc/port/tpool/
H A Dthread_pool.c106 tpool_active_t *activep; in job_cleanup() local
111 for (activepp = &tpool->tp_active;; activepp = &activep->tpa_next) { in job_cleanup()
112 activep = *activepp; in job_cleanup()
113 if (activep->tpa_tid == my_tid) { in job_cleanup()
114 *activepp = activep->tpa_next; in job_cleanup()
367 tpool_active_t *activep; in tpool_destroy() local
381 for (activep = tpool->tp_active; activep; activep = activep->tpa_next) in tpool_destroy()
382 (void) pthread_cancel(activep->tpa_tid); in tpool_destroy()
492 tpool_active_t *activep; in tpool_member() local
497 for (activep = tpool->tp_active; activep; activep = activep->tpa_next) { in tpool_member()
[all …]