summaryrefslogtreecommitdiff
path: root/Python/thread_nt.h
diff options
context:
space:
mode:
authorMartin v. L?wis <martin@v.loewis.de>2013-03-24 22:53:04 +0100
committerMartin v. L?wis <martin@v.loewis.de>2013-03-24 22:53:04 +0100
commit86b17240c2e8176ba8ef55e39bf3b7d10914d8e4 (patch)
treea36b8eedc2ff4e94d7492eebbdcb989abf470142 /Python/thread_nt.h
parentce0764defba3da9c96a5e9f8badc848e1805baad (diff)
parent650458ab36c29cfd3906f4940eabd01b8b523b5c (diff)
downloadcpython-86b17240c2e8176ba8ef55e39bf3b7d10914d8e4.tar.gz
#17425: merge 3.3
Diffstat (limited to 'Python/thread_nt.h')
-rw-r--r--Python/thread_nt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread_nt.h b/Python/thread_nt.h
index 938bf1e3fe..bd604fbdd3 100644
--- a/Python/thread_nt.h
+++ b/Python/thread_nt.h
@@ -130,7 +130,7 @@ FreeNonRecursiveMutex(PNRMUTEX mutex)
DWORD
EnterNonRecursiveMutex(PNRMUTEX mutex, DWORD milliseconds)
{
- return WaitForSingleObject(mutex, milliseconds);
+ return WaitForSingleObjectEx(mutex, milliseconds, FALSE);
}
BOOL