diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-10 12:24:06 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-10 12:24:06 +0200 |
commit | b269ef065938e598ab8bd99f73306aa7883e4257 (patch) | |
tree | 1bf6aeb4d1a83929b68c8d06b01bf8a434e8de03 /Python/thread_nt.h | |
parent | 82ad4d2a8d5b7b3147af9cf6406fca37d493e6ee (diff) | |
parent | 7dc68556d28f052d990549246963b63b4021ba4c (diff) | |
download | cpython-b269ef065938e598ab8bd99f73306aa7883e4257.tar.gz |
Issue #6975: os.path.realpath() now correctly resolves multiple nested symlinks on POSIX platforms.
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 |