From 4330e9940d7a505e8a09793fba91d06ee71d70d0 Mon Sep 17 00:00:00 2001 From: Brett Date: Thu, 29 Dec 2022 00:58:54 -0500 Subject: [PATCH] Point adjustments --- include/blt/profiling/profiler.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/blt/profiling/profiler.h b/include/blt/profiling/profiler.h index f767be8..c7d3896 100644 --- a/include/blt/profiling/profiler.h +++ b/include/blt/profiling/profiler.h @@ -31,10 +31,12 @@ namespace BLT { #ifdef PHMAP_ENABLED typedef phmap::parallel_flat_hash_map INTERVAL_MAP; typedef phmap::parallel_flat_hash_map POINT_MAP; + typedef phmap::parallel_flat_hash_map POINT_HISTORY_MAP; typedef phmap::parallel_flat_hash_map ORDER_MAP; #else typedef std::unordered_map INTERVAL_MAP; typedef std::unordered_map POINT_MAP; + typedef std::unordered_map POINT_HISTORY_MAP; typedef std::unordered_map ORDER_MAP; #endif @@ -42,6 +44,8 @@ namespace BLT { private: INTERVAL_MAP intervals{}; POINT_MAP points{}; + POINT_MAP cyclicPoints{}; + POINT_HISTORY_MAP cyclicPointsHistory{}; ORDER_MAP order{}; std::mutex timerLock{};