libresman
annotate src/threadpool.h @ 23:f8e5a1491275
win32 file change notification attempt1 (failed)
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Thu, 13 Feb 2014 13:17:07 +0200 |
parents | 410c19c735b2 |
children |
rev | line source |
---|---|
nuclear@5 | 1 #ifndef THREAD_POOL_H_ |
nuclear@5 | 2 #define THREAD_POOL_H_ |
nuclear@5 | 3 |
nuclear@5 | 4 struct thread_pool; |
nuclear@5 | 5 |
nuclear@6 | 6 typedef void (*tpool_work_func)(void *data, void *cls); |
nuclear@5 | 7 |
nuclear@5 | 8 #define TPOOL_AUTO 0 |
nuclear@5 | 9 int tpool_init(struct thread_pool *tpool, int num_threads); |
nuclear@5 | 10 void tpool_destroy(struct thread_pool *tpool); |
nuclear@5 | 11 |
nuclear@10 | 12 struct thread_pool *tpool_create(int num_threads); |
nuclear@10 | 13 void tpool_free(struct thread_pool *tpool); |
nuclear@10 | 14 |
nuclear@5 | 15 void tpool_set_work_func(struct thread_pool *tpool, tpool_work_func func, void *cls); |
nuclear@5 | 16 |
nuclear@6 | 17 int tpool_add_work(struct thread_pool *tpool, void *data); |
nuclear@5 | 18 |
nuclear@5 | 19 #endif /* THREAD_POOL_H_ */ |