You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a simple implementation of a thread pool with a job queue
using the C++ STL. It is meant to demonstrate an understanding of
STL container and concurrency features.
Future Goals:
Add the ability to get return values from submitted jobs.
About
A simple implementation of a thread pool with a job queue using the C++ STL