summaryrefslogtreecommitdiffstats
path: root/Python/condvar.h
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2013-01-25 13:25:48 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2013-01-25 13:25:48 (GMT)
commitb26a9b10ea5f095da0c699e41b29a724021cd09a (patch)
tree16bc11c938232612a40e511950e5f2b5843563c7 /Python/condvar.h
parent3f50bf652bae5e3371972eb261973238c62cc17b (diff)
downloadcpython-b26a9b10ea5f095da0c699e41b29a724021cd09a.zip
cpython-b26a9b10ea5f095da0c699e41b29a724021cd09a.tar.gz
cpython-b26a9b10ea5f095da0c699e41b29a724021cd09a.tar.bz2
Replace WaitForSingleObject with WaitForSingleObjectEx,
for better WinRT compatibility.
Diffstat (limited to 'Python/condvar.h')
-rw-r--r--Python/condvar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/condvar.h b/Python/condvar.h
index fe6bd74..72b08f9 100644
--- a/Python/condvar.h
+++ b/Python/condvar.h
@@ -242,7 +242,7 @@ _PyCOND_WAIT_MS(PyCOND_T *cv, PyMUTEX_T *cs, DWORD ms)
* but we are safe because we are using a semaphore wich has an internal
* count.
*/
- wait = WaitForSingleObject(cv->sem, ms);
+ wait = WaitForSingleObjectEx(cv->sem, ms, FALSE);
PyMUTEX_LOCK(cs);
if (wait != WAIT_OBJECT_0)
--cv->waiting;