From: Jeremy Hylton Date: Tue, 5 Sep 2000 15:44:50 +0000 (+0000) Subject: compromise value for threshold0: not too high, not too low X-Git-Tag: v2.0b1~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3263dc2b1538ddd948bb60a5ccee817e512a3671;p=thirdparty%2FPython%2Fcpython.git compromise value for threshold0: not too high, not too low --- diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index 28263c072284..06f51ed6cd7c 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -40,7 +40,7 @@ static int generation = 0; /* current generation being collected */ /* collection frequencies, XXX tune these */ static int enabled = 1; /* automatic collection enabled? */ -static int threshold0 = 5000; /* net new containers before collection */ +static int threshold0 = 700; /* net new containers before collection */ static int threshold1 = 10; /* generation0 collections before collecting 1 */ static int threshold2 = 10; /* generation1 collections before collecting 2 */