Traitement d'image en C sous linux — 2
Project detail
struct pool *threadpool_create(int num);
void threadpool_add_task(struct pool *pool, func_t fn, void *arg);
void threadpool_join(struct pool *pool);
void *worker(void *arg);
// ieffect.c
int process_multithread();