* sync.cc (muto::acquire): Fix while/if typo.
This commit is contained in:
parent
75fc1764dc
commit
dc02f343bf
|
@ -1,3 +1,7 @@
|
|||
Wed Sep 12 21:06:38 2001 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* sync.cc (muto::acquire): Fix while/if typo.
|
||||
|
||||
Wed Sep 12 23:06:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* wincap.cc (wincapc::init): Simplify W2K/XP case.
|
||||
|
|
|
@ -82,7 +82,7 @@ muto::acquire (DWORD ms)
|
|||
case, it is possible for a thread which is going to wait for bruteforce
|
||||
to wake up immediately. It will then attempt to grab sync but will fail
|
||||
and go back to waiting. */
|
||||
while (tid != this_tid && (was_waiting || InterlockedExchange (&sync, 1) != 0))
|
||||
if (tid != this_tid && (was_waiting || InterlockedExchange (&sync, 1) != 0))
|
||||
{
|
||||
switch (WaitForSingleObject (bruteforce, ms))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue