From: Simon Marlow Date: Fri, 12 Oct 2007 10:04:05 +0000 (+0000) Subject: threadStackOverflow should be using allocateLocal X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=62cda22c8db50fc1e90efcf266d75ea4d3590697;p=ghc-hetmet.git threadStackOverflow should be using allocateLocal --- diff --git a/rts/Schedule.c b/rts/Schedule.c index 375520d..cb2f7f3 100644 --- a/rts/Schedule.c +++ b/rts/Schedule.c @@ -2837,7 +2837,7 @@ threadStackOverflow(Capability *cap, StgTSO *tso) "increasing stack size from %ld words to %d.", (long)tso->stack_size, new_stack_size); - dest = (StgTSO *)allocate(new_tso_size); + dest = (StgTSO *)allocateLocal(cap,new_tso_size); TICK_ALLOC_TSO(new_stack_size,0); /* copy the TSO block and the old stack into the new area */