summaryrefslogtreecommitdiffstats
path: root/include/framework/scheduling/FIFOScheduler.h
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-04-25 18:36:54 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2025-04-25 18:36:54 -0400
commit81d3ef3cb4a00d566978ebca511fd947f3ef9b1b (patch)
treef3ca946790e2fa6a94359c0053845ae4d94c2578 /include/framework/scheduling/FIFOScheduler.h
parent1957b2dd33b244754cd47db05f831a7627b8031e (diff)
downloaddynamic-extension-81d3ef3cb4a00d566978ebca511fd947f3ef9b1b.tar.gz
Improved statistics calculation
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 703f13e..2f49b5f 100644
--- a/include/framework/scheduling/FIFOScheduler.h
+++ b/include/framework/scheduling/FIFOScheduler.h
@@ -72,6 +72,7 @@ public:
}
void print_statistics() { m_stats.print_statistics(); }
+ void print_query_time_data() { m_stats.print_query_time_data(); }
private:
psudb::LockedPriorityQueue<Task> m_task_queue;