Skip to content

Commit

Permalink
Increase backtrace hashtable size.
Browse files Browse the repository at this point in the history
  • Loading branch information
levlam committed Mar 14, 2023
1 parent 1673d23 commit c602c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion memprof/memprof.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit c602c09

Please sign in to comment.