summaryrefslogtreecommitdiffstats
path: root/include/framework/scheduling/FIFOScheduler.h
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2024-01-22 12:10:54 -0500
committerDouglas Rumbaugh <dbr4@psu.edu>2024-01-22 12:10:54 -0500
commitb1e4182825e6c162571b7cc4efaf8bc44055b49c (patch)
tree54b7f68b9e76e451aaac6fe611ac143b8a787178 /include/framework/scheduling/FIFOScheduler.h
parent49386f8cbfb2c2342df0d06b7345a35063f8d237 (diff)
downloaddynamic-extension-b1e4182825e6c162571b7cc4efaf8bc44055b49c.tar.gz
Adjusted recon_benchmark and properly shutdown FIFOScheduler
Diffstat (limited to 'include/framework/scheduling/FIFOScheduler.h')
-rw-r--r--include/framework/scheduling/FIFOScheduler.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/framework/scheduling/FIFOScheduler.h b/include/framework/scheduling/FIFOScheduler.h
index b77a8a1..0df4d3c 100644
--- a/include/framework/scheduling/FIFOScheduler.h
+++ b/include/framework/scheduling/FIFOScheduler.h
@@ -45,6 +45,7 @@ public:
}
m_sched_thrd.join();
+ m_sched_wakeup_thrd.join();
}
void schedule_job(std::function<void(void*)> job, size_t size, void *args, size_t type=0) {