Farmerjoe12 / CppThreadPool

My first Thread Pool!
0 stars 0 forks source link

Thread pool #2

Open Farmerjoe12 opened 6 years ago

Farmerjoe12 commented 6 years ago

A thread pool is probably some type of list-esque data structure which serves to store a number of Thread objects. The "thread pool" is the purpose of this repository, but jobification and multi-core task distribution extends beyond the realm of data structures for Thread objects.

Farmerjoe12 commented 6 years ago

Program0 uses a vector to store threads as it serves as a very nice dynamic array structure. However, it's effectiveness as a "thread pool" is yet to be determined. Along with said pool, the threads should be fleshed out with busy flags and idle functions to hold them while not being currently operated on.