From 6c278790358dc723fe574a593203993be46ab2fb Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Fri, 12 Oct 2007 10:17:11 +0000 Subject: [PATCH] accounting wibble: we were missing an alloc_blocks++ in allocateLocal() --- rts/sm/Storage.c | 1 + 1 file changed, 1 insertion(+) diff --git a/rts/sm/Storage.c b/rts/sm/Storage.c index cd840dd..d8381e0 100644 --- a/rts/sm/Storage.c +++ b/rts/sm/Storage.c @@ -695,6 +695,7 @@ allocateLocal (Capability *cap, nat n) bd->gen_no = 0; bd->step = cap->r.rNursery; bd->flags = 0; + alloc_blocks++; } else { // we have a block in the nursery: take it and put // it at the *front* of the nursery list, and use it -- 1.7.10.4