summaryrefslogtreecommitdiffstats
path: root/runtime/gc
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2014-04-11 18:06:01 -0700
committerMathieu Chartier <mathieuc@google.com>2014-04-11 18:08:48 -0700
commit7840888bd9b6accdb32c38563e78a9dc201f1303 (patch)
tree5ee5a79c77bf61c5c49a2f75668fbaf3f02c16ec /runtime/gc
parent95cd06622b956d7cd5b65248b1f381e602753f2c (diff)
downloadart-7840888bd9b6accdb32c38563e78a9dc201f1303.zip
art-7840888bd9b6accdb32c38563e78a9dc201f1303.tar.gz
art-7840888bd9b6accdb32c38563e78a9dc201f1303.tar.bz2
Fix hammerhead phone boot on master.
Wasn't failing on AOSP. Change-Id: I8e531bf7493d36dc2667afeaf3133ce8560a2ce1
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;