See if using mScanDelay of 1 instead of 0 fixes the leak regression.

This commit is contained in:
dbaron@dbaron.org 2007-06-21 16:49:37 -07:00
Родитель 4bc9171bec
Коммит 11208f0393
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -195,7 +195,7 @@ struct nsCycleCollectorParams
// - More time to be spent in the collector (bad)
// - Less delay between forming garbage and collecting it (good)
mScanDelay(0)
mScanDelay(1)
{
#ifdef DEBUG_CC
char *s = PR_GetEnv("XPCOM_CC_SCAN_DELAY");