From: simonmar Date: Mon, 1 Mar 2004 09:49:48 +0000 (+0000) Subject: [project @ 2004-03-01 09:49:48 by simonmar] X-Git-Tag: Approx_11550_changesets_converted~38 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=fa8faa35b45e97ceceec54adc4ae6ef92f0a5858;hp=0dca9ac529728ae9dbcdbf07ab9a80767534874c;p=ghc-hetmet.git [project @ 2004-03-01 09:49:48 by simonmar] make it compile (win32) --- 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; }