зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1373067
- Ensure CC isn't started too often, r=mccr8
This commit is contained in:
Родитель
1ee305812e
Коммит
0b41b8c34d
|
@ -2315,6 +2315,11 @@ nsJSContext::MaybePokeCC()
|
|||
return;
|
||||
}
|
||||
|
||||
uint32_t sinceLastCCEnd = TimeUntilNow(sLastCCEndTime);
|
||||
if (sinceLastCCEnd && sinceLastCCEnd < NS_CC_DELAY) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (ShouldTriggerCC(nsCycleCollector_suspectedCount())) {
|
||||
sCCRunnerFireCount = 0;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче