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.
- Host: GitHub
- URL: https://github.com/calebtt/impcool_sol
- Owner: calebtt
- Created: 2022-08-10T12:05:49.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-18T06:22:35.000Z (almost 2 years ago)
- Last Synced: 2025-04-09T15:19:50.213Z (about 1 year ago)
- Language: C++
- Homepage:
- Size: 93.8 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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