Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-09-13 05:07:25 +0400
committerChristopher Faylor <me@cgf.cx>2001-09-13 05:07:25 +0400
commitdc02f343bfd15c2737e1b9a3a93e9aca11f35983 (patch)
tree04c35de2f9b4f73ebe71ef6220463c5d2ef73dc6 /winsup/cygwin/sync.cc
parent75fc1764dc5def6c8a82d40764138956a0f8077b (diff)
* sync.cc (muto::acquire): Fix while/if typo.
Diffstat (limited to 'winsup/cygwin/sync.cc')
-rw-r--r--winsup/cygwin/sync.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/sync.cc b/winsup/cygwin/sync.cc
index 7ef5dc8d8..78df35475 100644
--- a/winsup/cygwin/sync.cc
+++ b/winsup/cygwin/sync.cc
@@ -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))
{