X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FBlockAlloc.c;h=5e0e321947af8b5dcd03d188b0c846a2a8cb0c70;hb=0dbbf1932d550293986af6244202cb735b2cd966;hp=9b0135428935ac8d3c6a2e1767adf59e936c2a94;hpb=03a9ff01812afc81eb5236fd3063cbec44cf469e;p=ghc-hetmet.git diff --git a/ghc/rts/BlockAlloc.c b/ghc/rts/BlockAlloc.c index 9b01354..5e0e321 100644 --- a/ghc/rts/BlockAlloc.c +++ b/ghc/rts/BlockAlloc.c @@ -1,6 +1,6 @@ /* ----------------------------------------------------------------------------- * - * (c) The GHC Team 1998-2000 + * (c) The GHC Team 1998-2006 * * The block allocator and free list manager. * @@ -29,8 +29,7 @@ static void initMBlock(void *mblock); static bdescr *allocMegaGroup(nat mblocks); static void freeMegaGroup(bdescr *bd); -// In SMP mode, the free list is protected by sm_mutex. In the -// threaded RTS, it is protected by the Capability. +// In THREADED_RTS mode, the free list is protected by sm_mutex. static bdescr *free_list = NULL; /* -----------------------------------------------------------------------------