diff options
author | Martin v. L?wis <martin@v.loewis.de> | 2013-03-24 22:53:04 +0100 |
---|---|---|
committer | Martin v. L?wis <martin@v.loewis.de> | 2013-03-24 22:53:04 +0100 |
commit | 86b17240c2e8176ba8ef55e39bf3b7d10914d8e4 (patch) | |
tree | a36b8eedc2ff4e94d7492eebbdcb989abf470142 /Python/thread_nt.h | |
parent | ce0764defba3da9c96a5e9f8badc848e1805baad (diff) | |
parent | 650458ab36c29cfd3906f4940eabd01b8b523b5c (diff) | |
download | cpython-86b17240c2e8176ba8ef55e39bf3b7d10914d8e4.tar.gz |
#17425: merge 3.3
Diffstat (limited to 'Python/thread_nt.h')
-rw-r--r-- | Python/thread_nt.h | 2 |
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 |