From 5f82512925a089d604a6192f559fd764a653fe90 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 11 May 2005 12:44:26 +0000 Subject: [PATCH] [project @ 2005-05-11 12:44:26 by simonmar] allocateLocal(): bump the block count on the step, not the global alloc_blocks count. --- ghc/rts/Storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/rts/Storage.c b/ghc/rts/Storage.c index 3d3178b..99d36d2 100644 --- a/ghc/rts/Storage.c +++ b/ghc/rts/Storage.c @@ -662,7 +662,7 @@ allocateLocal( StgRegTable *reg, nat n ) // full: allocate a fresh block (we can't fail here). ACQUIRE_SM_LOCK; bd = allocBlock(); - alloc_blocks++; + reg->rNursery->n_blocks++; RELEASE_SM_LOCK; bd->gen_no = 0; bd->step = g0s0; -- 1.7.10.4