diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2024-01-22 12:10:54 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2024-01-22 12:10:54 -0500 |
| commit | b1e4182825e6c162571b7cc4efaf8bc44055b49c (patch) | |
| tree | 54b7f68b9e76e451aaac6fe611ac143b8a787178 /include/framework/scheduling/FIFOScheduler.h | |
| parent | 49386f8cbfb2c2342df0d06b7345a35063f8d237 (diff) | |
| download | dynamic-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.h | 1 |
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) { |