From 62cda22c8db50fc1e90efcf266d75ea4d3590697 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Fri, 12 Oct 2007 10:04:05 +0000 Subject: [PATCH] threadStackOverflow should be using allocateLocal --- rts/Schedule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 1.7.10.4