From fa8faa35b45e97ceceec54adc4ae6ef92f0a5858 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 1 Mar 2004 09:49:48 +0000 Subject: [PATCH 1/1] [project @ 2004-03-01 09:49:48 by simonmar] make it compile (win32) --- ghc/rts/OSThreads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/rts/OSThreads.c b/ghc/rts/OSThreads.c index cac4abe..2a7a152 100644 --- a/ghc/rts/OSThreads.c +++ b/ghc/rts/OSThreads.c @@ -181,7 +181,7 @@ waitCondition ( Condition* pCond, Mutex* pMut ) RELEASE_LOCK(*pMut); WaitForSingleObject(*pCond, INFINITE); /* Hmm..use WaitForMultipleObjects() ? */ - ACQUIRE_LOCK(*pMut, INFINITE); + ACQUIRE_LOCK(*pMut); return rtsTrue; } -- 1.7.10.4