Lines Matching refs:activep
109 tpool_active_t *activep; in job_cleanup() local
113 for (activepp = &tpool->tp_active; ; activepp = &activep->tpa_next) { in job_cleanup()
114 activep = *activepp; in job_cleanup()
115 if (activep->tpa_tid == my_tid) { in job_cleanup()
116 *activepp = activep->tpa_next; in job_cleanup()
474 tpool_active_t *activep; in tpool_destroy() local
488 for (activep = tpool->tp_active; activep; activep = activep->tpa_next) in tpool_destroy()
489 (void) pthread_cancel(activep->tpa_tid); in tpool_destroy()
599 tpool_active_t *activep; in tpool_member() local
604 for (activep = tpool->tp_active; activep; activep = activep->tpa_next) { in tpool_member()
605 if (activep->tpa_tid == my_tid) { in tpool_member()