Bug 1527532 - Make initial nursery size smaller r=sfink

Differential Revision: https://phabricator.services.mozilla.com/D19349

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Paul Bone 2019-02-25 02:49:17 +00:00
Родитель 032058c87d
Коммит 437a03b092
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -142,7 +142,7 @@ bool js::Nursery::init(uint32_t maxNurseryBytes, AutoLockGCBgAlloc& lock) {
if (!allocateNextChunk(0, lock)) {
return false;
}
capacity_ = NurseryChunkUsableSize;
capacity_ = SubChunkLimit;
/* After this point the Nursery has been enabled */
setCurrentChunk(0, true);