thread-pool
thread-pool is library that allows asynchronous function execution from a static thread pool.

The usage of this library allows programmers to control the number of threads used in a process and avoid the thread creation overhead when new asynchronous computation are needed.

Therefore thread-pool may increase overall performance in a multi-thread program.

Licence: BSD

Dependencies: Bordeaux-Threads, arnesi

Home page: https://github.com/kiuma/thread-pool.


Topics: system programming thread concurrency