diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2025-04-25 18:36:54 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2025-04-25 18:36:54 -0400 |
| commit | 81d3ef3cb4a00d566978ebca511fd947f3ef9b1b (patch) | |
| tree | f3ca946790e2fa6a94359c0053845ae4d94c2578 /include/framework/scheduling/FIFOScheduler.h | |
| parent | 1957b2dd33b244754cd47db05f831a7627b8031e (diff) | |
| download | dynamic-extension-81d3ef3cb4a00d566978ebca511fd947f3ef9b1b.tar.gz | |
Improved statistics calculation
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 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; |