Bug 1287063 - Remove isGCScheduled check from activeGCInAtomsZone. r=jonco

This commit is contained in:
Jan de Mooij 2016-07-18 14:35:33 +02:00
Родитель 20509c6a8c
Коммит ff4b4a08d8
2 изменённых файлов: 4 добавлений и 1 удалений

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

@ -0,0 +1,4 @@
if (helperThreadCount() === 0)
quit();
schedulegc("");
offThreadCompileScript("");

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

@ -854,7 +854,6 @@ JSRuntime::activeGCInAtomsZone()
{
Zone* zone = atomsCompartment_->zone();
return (zone->needsIncrementalBarrier() && !gc.isVerifyPreBarriersEnabled()) ||
zone->isGCScheduled() ||
zone->wasGCStarted();
}