From: donnie@darthik.com Date: Mon, 13 Apr 2009 01:17:01 +0000 (+0000) Subject: For consistency, changed access of thread id to be through capability instead of... X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=9211ec0183bbe923ec6c5997fa695e5f5a3eefab For consistency, changed access of thread id to be through capability instead of directly from StgRegTable. --- diff --git a/rts/Sparks.c b/rts/Sparks.c index 75464d9..7e89d46 100644 --- a/rts/Sparks.c +++ b/rts/Sparks.c @@ -91,7 +91,7 @@ newSpark (StgRegTable *reg, StgClosure *p) cap->sparks_created++; - postEvent(cap, EVENT_CREATE_SPARK, reg->rCurrentTSO->id, 0); + postEvent(cap, EVENT_CREATE_SPARK, cap->r.rCurrentTSO->id, 0); return 1; }