From: Simon Marlow Date: Tue, 7 Mar 2006 09:59:49 +0000 (+0000) Subject: fix one #ifdef SMP that didn't get turned into #ifdef THREADED_RTS X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=ee63e6ddec3f1ceb6c1f3812320b961c1f84e928;p=ghc-hetmet.git fix one #ifdef SMP that didn't get turned into #ifdef THREADED_RTS --- diff --git a/ghc/rts/Schedule.c b/ghc/rts/Schedule.c index 3f10e70..578328d 100644 --- a/ghc/rts/Schedule.c +++ b/ghc/rts/Schedule.c @@ -616,7 +616,7 @@ run_thread: // be running again, see code below. t->saved_errno = errno; -#ifdef SMP +#if defined(THREADED_RTS) // If ret is ThreadBlocked, and this Task is bound to the TSO that // blocked, we are in limbo - the TSO is now owned by whatever it // is blocked on, and may in fact already have been woken up,