From 254d0c73e4b00921cbcfb95e17056dfa8e65510f Mon Sep 17 00:00:00 2001 From: Bobby Powers Date: Sun, 10 Mar 2019 16:23:32 -0700 Subject: [PATCH] common: bump arena to 64 GB --- src/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.h b/src/common.h index 415efe0d..4f9cc4a8 100644 --- a/src/common.h +++ b/src/common.h @@ -95,7 +95,7 @@ static constexpr std::chrono::milliseconds kMeshPeriodMs{100}; // 100 ms // controls aspects of miniheaps static constexpr size_t kMaxMeshes = 256; // 1 per bit -static constexpr size_t kArenaSize = 16ULL * 1024ULL * 1024ULL * 1024ULL; // 16 GB +static constexpr size_t kArenaSize = 64ULL * 1024ULL * 1024ULL * 1024ULL; // 64 GB static constexpr size_t kAltStackSize = 16 * 1024UL; // 16k sigaltstacks #define SIGQUIESCE (SIGRTMIN + 7) #define SIGDUMP (SIGRTMIN + 8)