From c602c09f7917a2e1ef3f7e48d7bb8413397a4556 Mon Sep 17 00:00:00 2001 From: levlam Date: Tue, 14 Mar 2023 15:55:03 +0300 Subject: [PATCH] Increase backtrace hashtable size. --- memprof/memprof.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memprof/memprof.cpp b/memprof/memprof.cpp index 6f6cb93c0..334a072f2 100644 --- a/memprof/memprof.cpp +++ b/memprof/memprof.cpp @@ -143,7 +143,7 @@ struct HashtableNode { std::atomic size; }; -static constexpr std::size_t HT_MAX_SIZE = 1000000; +static constexpr std::size_t HT_MAX_SIZE = 10000000; static std::atomic ht_size{0}; static std::array ht;