Lines Matching refs:activep
108 tpool_active_t *activep; in job_cleanup() local
112 for (activepp = &tpool->tp_active; ; activepp = &activep->tpa_next) { in job_cleanup()
113 activep = *activepp; in job_cleanup()
114 if (activep->tpa_tid == my_tid) { in job_cleanup()
115 *activepp = activep->tpa_next; in job_cleanup()
461 tpool_active_t *activep; in tpool_destroy() local
475 for (activep = tpool->tp_active; activep; activep = activep->tpa_next) in tpool_destroy()
476 (void) pthread_cancel(activep->tpa_tid); in tpool_destroy()
586 tpool_active_t *activep; in tpool_member() local
591 for (activep = tpool->tp_active; activep; activep = activep->tpa_next) { in tpool_member()
592 if (activep->tpa_tid == my_tid) { in tpool_member()