Chromium Code Reviews| Index: src/heap.cc |
| diff --git a/src/heap.cc b/src/heap.cc |
| index 74b62239ad35436cc5d7dd682376a9b1e2fad473..3fe44f2d4c2b74b6a0021990cd86e6ce824f0d2c 100644 |
| --- a/src/heap.cc |
| +++ b/src/heap.cc |
| @@ -5793,7 +5793,7 @@ bool Heap::ConfigureHeap(int max_semispace_size, |
| max_semispace_size_ = RoundUpToPowerOf2(max_semispace_size_); |
| reserved_semispace_size_ = RoundUpToPowerOf2(reserved_semispace_size_); |
| initial_semispace_size_ = Min(initial_semispace_size_, max_semispace_size_); |
| - external_allocation_limit_ = 10 * max_semispace_size_; |
| + external_allocation_limit_ = 16 * max_semispace_size_; |
|
ulan
2012/08/06 13:01:58
The current limit is 80MB for desktop and 40MB for
|
| // The old generation is paged and needs at least one page for each space. |
| int paged_space_count = LAST_PAGED_SPACE - FIRST_PAGED_SPACE + 1; |