An open API service indexing awesome lists of open source software.

https://github.com/calebtt/impcool_sol

C++ Thread pool that utilizes the concept of immutability to make implementation simpler.
https://github.com/calebtt/impcool_sol

Last synced: about 1 year ago
JSON representation

C++ Thread pool that utilizes the concept of immutability to make implementation simpler.

Awesome Lists containing this project

README

          

# impcool_sol

* A thread pool (for running infinite tasks) that utilizes the concept of immutability to make implementation simpler.
* The task buffer is mutated outside of the class via a helper object, and no shared data exists there. The thread unit merely copies it for use.
* Infinite tasks are not popped and removed from the list after one iteration.
* unlicense