X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2Fsm%2FScav.h;h=e8eab485d5165d6a87de8a5cbe957cf8848a1d8c;hb=49780c2e25cfbe821d585c5a31cb95aa49f41f14;hp=010a81013c86facbc1b2041fdfbf8e62a661783b;hpb=ab0e778ccfde61aed4c22679b24d175fc6cc9bf3;p=ghc-hetmet.git diff --git a/rts/sm/Scav.h b/rts/sm/Scav.h index 010a810..e8eab48 100644 --- a/rts/sm/Scav.h +++ b/rts/sm/Scav.h @@ -1,13 +1,16 @@ /* ----------------------------------------------------------------------------- * - * (c) The GHC Team 1998-2006 + * (c) The GHC Team 1998-2008 * * Generational garbage collector: scavenging functions * + * Documentation on the architecture of the Garbage Collector can be + * found in the online commentary: + * + * http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC + * * ---------------------------------------------------------------------------*/ -void scavenge ( step * ); -void scavenge_mark_stack ( void ); -void scavenge_large ( step * ); -void scavenge_static ( void ); -void scavenge_mutable_list ( generation *g ); +void scavenge_loop (void); +rtsBool any_work (void); +void scavenge_mutable_list (generation *g);