summaryrefslogtreecommitdiffstats
path: root/include/framework/scheduling/FIFOScheduler.h
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-04-30 13:06:56 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2025-04-30 13:06:56 -0400
commitaa15300f8302bf713d752a775f32060b59b8746f (patch)
tree7520c84f04da657cc67b3a03ad7ba0448e3ac86d /include/framework/scheduling/FIFOScheduler.h
parent81d3ef3cb4a00d566978ebca511fd947f3ef9b1b (diff)
downloaddynamic-extension-aa15300f8302bf713d752a775f32060b59b8746f.tar.gz
Stats tweaks and KNN benchmark
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 2f49b5f..8fbe07c 100644
--- a/include/framework/scheduling/FIFOScheduler.h
+++ b/include/framework/scheduling/FIFOScheduler.h
@@ -36,6 +36,7 @@ public:
m_thrd_cnt((thread_cnt) ? thread_cnt : DEFAULT_MAX_THREADS),
m_used_memory(0), m_used_thrds(0), m_shutdown(false) {
m_sched_thrd = std::thread(&FIFOScheduler::run, this);
+ m_counter.store(0);
m_thrd_pool.resize(m_thrd_cnt);
}