From ee63e6ddec3f1ceb6c1f3812320b961c1f84e928 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Tue, 7 Mar 2006 09:59:49 +0000 Subject: [PATCH] fix one #ifdef SMP that didn't get turned into #ifdef THREADED_RTS --- ghc/rts/Schedule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 1.7.10.4