- Update Ghoul reference

- Remove not needed cmake files
- Make ConcurrentJobManager compile again
This commit is contained in:
Alexander Bock
2016-08-11 10:14:50 +02:00
parent dd74204eb7
commit af672b6a4e
5 changed files with 3 additions and 3735 deletions
@@ -75,14 +75,14 @@ namespace openspace {
void enqueueJob(std::shared_ptr<Job<P>> job) {
threadPool->enqueue([this, job]() {
threadPool->queue([this, job]() {
job->execute();
_finishedJobs.push(job);
});
}
void clearEnqueuedJobs() {
threadPool->clearTasks();
threadPool->clearRemainingTasks();
}
std::shared_ptr<Job<P>> popFinishedJob() {