summaryrefslogtreecommitdiffstats
path: root/runtime/gc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/gc')
-rw-r--r--runtime/gc/heap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/heap.cc b/runtime/gc/heap.cc
index 64dafe7..479ea2e 100644
--- a/runtime/gc/heap.cc
+++ b/runtime/gc/heap.cc
@@ -203,7 +203,7 @@ Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max
non_moving_space_ = space::DlMallocSpace::Create(
"zygote / non moving space", initial_size, kNonMovingSpaceCapacity, kNonMovingSpaceCapacity,
requested_alloc_space_begin, false);
- non_moving_space_->SetGrowthLimit(non_moving_space_->Capacity());
+ non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity());
CreateMainMallocSpace(mem_map, initial_size, growth_limit, capacity);
} else {
std::string error_str;