5#ifndef __PTHREAD_POOL_H__
17void *
pool_start(
void * (*thread_func)(
void *),
unsigned int threads);
void pool_enqueue(void *pool, void *arg, char free)
Definition pthread_pool.cc:46
void pool_wait(void *pool)
Definition pthread_pool.cc:62
void * pool_start(void *(*thread_func)(void *), unsigned int threads)
Definition pthread_pool.cc:26
void pool_end(void *pool)
Definition pthread_pool.cc:72
Definition pthread_pool.cc:12