1 #ifndef OPENMM_THREAD_POOL_H_
2 #define OPENMM_THREAD_POOL_H_
36 #include "windowsExport.h"
61 int getNumThreads()
const;
65 void execute(Task& task);
75 void waitForThreads();
82 int numThreads, waitCount;
83 std::vector<pthread_t> thread;
84 std::vector<ThreadData*> threadData;
85 pthread_cond_t startCondition, endCondition;
100 virtual void execute(
ThreadPool& pool,
int threadIndex) = 0;
105 #endif // OPENMM_THREAD_POOL_H_
A ThreadPool creates a set of worker threads that can be used to execute tasks in parallel...
Definition: ThreadPool.h:52