2015-03-13 16:42:30 +03:00
![Build status ](http://178.62.170.124:3000/pithikos/c-thread-pool/badge/?branch=master )
2015-03-13 16:39:51 +03:00
2015-01-17 14:46:49 +03:00
# C Thread Pool
2015-12-11 17:55:01 +03:00
This is a minimal but advanced threadpool implementation.
2011-11-05 16:35:31 +04:00
2015-01-17 14:35:57 +03:00
* ANCI C and POSIX compliant
2015-12-11 17:55:01 +03:00
* Pause/resume/wait as you like
* Simple easy-to-digest API
* Well tested
2015-01-17 14:35:57 +03:00
2015-01-17 15:11:00 +03:00
The threadpool is under MIT license. Notice that this project took a considerable amount of work and sacrifice of my free time and the reason I give it for free (even for commercial use) is so when you become rich and wealthy you don't forget about us open-source creatures of the night. Cheers!
2015-01-17 14:35:57 +03:00
2011-11-05 16:35:31 +04:00
2015-01-25 13:35:38 +03:00
## Run an example
2014-08-19 19:00:55 +04:00
2011-11-05 16:35:31 +04:00
The library is not precompiled so you have to compile it with your project. The thread pool
2015-01-18 02:10:15 +03:00
uses POSIX threads so if you compile with gcc on Linux you have to use the flag `-pthread` like this:
2011-11-05 16:35:31 +04:00
2015-03-31 13:49:46 +03:00
gcc example.c thpool.c -D THPOOL_DEBUG -pthread -o example
2011-11-05 16:35:31 +04:00
Then run the executable like this:
2015-01-17 15:09:52 +03:00
./example
2011-11-05 16:35:31 +04:00
2015-01-25 13:35:38 +03:00
## Basic usage
2011-11-05 16:35:31 +04:00
2015-01-18 16:38:33 +03:00
1. Include the header in your source file: `#include "thpool.h"`
2015-01-18 02:10:15 +03:00
2. Create a thread pool with number of threads you want: `threadpool thpool = thpool_init(4);`
2015-01-18 16:40:18 +03:00
3. Add work to the pool: `thpool_add_work(thpool, (void*)function_p, (void*)arg_p);`
2014-12-30 15:52:14 +03:00
2015-01-18 02:10:15 +03:00
The workers(threads) will start their work automatically as fast as there is new work
in the pool. If you want to wait for all added work to be finished before continuing
2014-12-30 15:52:14 +03:00
you can use `thpool_wait(thpool);` . If you want to destroy the pool you can use
`thpool_destroy(thpool);` .
2011-11-05 16:35:31 +04:00
2015-01-17 14:35:57 +03:00
2015-01-25 13:35:38 +03:00
## API
2014-09-21 19:40:20 +04:00
2015-01-18 17:07:29 +03:00
For a deeper look into the documentation check in the [thpool.h ](https://github.com/Pithikos/C-Thread-Pool/blob/master/thpool.h ) file. Below is a fast practical overview.
2015-01-17 14:35:57 +03:00
2015-01-18 02:04:39 +03:00
| Function example | Description |
|---------------------------------|---------------------------------------------------------------------|
2015-01-18 02:12:23 +03:00
| ** *thpool_init(4)*** | Will return a new threadpool with `4` threads. |
2015-01-18 16:44:03 +03:00
| ** *thpool_add_work(thpool, (void* )function_p, (void* )arg_p)*** | Will add new work to the pool. Work is simply a function. You can pass a single argument to the function if you wish. If not, `NULL` should be passed. |
2015-01-18 02:07:24 +03:00
| ** *thpool_wait(thpool)*** | Will wait for all jobs (both in queue and currently running) to finish. |
| ** *thpool_destroy(thpool)*** | This will destroy the threadpool. If jobs are currently being executed, then it will wait for them to finish. |
| ** *thpool_pause(thpool)*** | All threads in the threadpool will pause no matter if they are idle or executing work. |
2015-01-18 17:06:42 +03:00
| ** *thpool_resume(thpool)*** | If the threadpool is paused, then all threads will resume from where they were. |