Skip to content

Commit c602c09

Browse files
committed
Increase backtrace hashtable size.
1 parent 1673d23 commit c602c09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎memprof/memprof.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ struct HashtableNode {
143143
std::atomic<std::size_t> size;
144144
};
145145

146-
static constexpr std::size_t HT_MAX_SIZE = 1000000;
146+
static constexpr std::size_t HT_MAX_SIZE = 10000000;
147147
static std::atomic<std::size_t> ht_size{0};
148148
static std::array<HashtableNode, HT_MAX_SIZE> ht;
149149

0 commit comments

Comments
 (0)