diff options
| -rw-r--r-- | runtime/gc/collector/mark_compact.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/collector/mark_compact.cc b/runtime/gc/collector/mark_compact.cc index 74c8174756..6509dbe3ef 100644 --- a/runtime/gc/collector/mark_compact.cc +++ b/runtime/gc/collector/mark_compact.cc @@ -305,7 +305,7 @@ static constexpr size_t kMaxNumUffdWorkers = 2; // of mutator threads trying to access the moving-space during one compaction // phase. Using a lower number in debug builds to hopefully catch the issue // before it becomes a problem on user builds. -static constexpr size_t kMutatorCompactionBufferCount = kIsDebugBuild ? 256 : 512; +static constexpr size_t kMutatorCompactionBufferCount = kIsDebugBuild ? 256 : 2048; // Minimum from-space chunk to be madvised (during concurrent compaction) in one go. static constexpr ssize_t kMinFromSpaceMadviseSize = 1 * MB; // Concurrent compaction termination logic is different (and slightly more efficient) if the |