From f30339445724f48bb252485b8eac850a4dc9a9ae Mon Sep 17 00:00:00 2001 From: simonm Date: Fri, 5 Feb 1999 14:49:22 +0000 Subject: [PATCH] [project @ 1999-02-05 14:49:22 by simonm] [ repeating commit, message got lost last time ] - Scavenge each older generation immediately after traversing its mutable list. - Make the first GC a major one: it doesn't cost much, and we get to garbage collection 'main' straight away. - Change the order of scavenging to try to minimise the size of the mutable lists. --- ghc/rts/GC.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/rts/GC.c b/ghc/rts/GC.c index ffb58e9..1dab72d 100644 --- a/ghc/rts/GC.c +++ b/ghc/rts/GC.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: GC.c,v 1.24 1999/02/05 14:45:42 simonm Exp $ + * $Id: GC.c,v 1.25 1999/02/05 14:49:22 simonm Exp $ * * Two-space garbage collector * -- 1.7.10.4