TinyChatEngine
Loading...
Searching...
No Matches
pthread_pool.h
Go to the documentation of this file.
1
5#ifndef __PTHREAD_POOL_H__
17void * pool_start(void * (*thread_func)(void *), unsigned int threads);
18
26void pool_enqueue(void *pool, void *arg, char free);
27
31void pool_wait(void *pool);
32
41void pool_end(void *pool);
42
43#endif
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