From 212a6a53117796a73c19aaf372fc541ba2221014 Mon Sep 17 00:00:00 2001 From: "dbaron@dbaron.org" Date: Wed, 27 Jun 2007 13:41:26 -0700 Subject: [PATCH] Change cycle collector aging constant from 10 to 0. b=381199 r+sr=peterv --- xpcom/base/nsCycleCollector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpcom/base/nsCycleCollector.cpp b/xpcom/base/nsCycleCollector.cpp index e63a0877a88a..3a39ccb20515 100644 --- a/xpcom/base/nsCycleCollector.cpp +++ b/xpcom/base/nsCycleCollector.cpp @@ -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(10) + mScanDelay(0) { #ifdef DEBUG_CC char *s = PR_GetEnv("XPCOM_CC_SCAN_DELAY");