aboutsummaryrefslogtreecommitdiffhomepage
path: root/memprof/memprof.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'memprof/memprof.cpp')
-rw-r--r--memprof/memprof.cpp2
1 files changed, 1 insertions, 1 deletions
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<std::size_t> size;
};
-static constexpr std::size_t HT_MAX_SIZE = 1000000;
+static constexpr std::size_t HT_MAX_SIZE = 10000000;
static std::atomic<std::size_t> ht_size{0};
static std::array<HashtableNode, HT_MAX_SIZE> ht;