summaryrefslogtreecommitdiffstats
path: root/Modules/timemodule.c
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 /Modules/timemodule.c
parent3f50bf652bae5e3371972eb261973238c62cc17b (diff)
downloadcpython-b26a9b10ea5f095da0c699e41b29a724021cd09a.zip
cpython-b26a9b10ea5f095da0c699e41b29a724021cd09a.tar.gz
cpython-b26a9b10ea5f095da0c699e41b29a724021cd09a.tar.bz2
Replace WaitForSingleObject with WaitForSingleObjectEx,
for better WinRT compatibility.
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r--Modules/timemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index 8a81c8c..d5ffdcc 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -1574,7 +1574,7 @@ floatsleep(double secs)
DWORD rc;
HANDLE hInterruptEvent = _PyOS_SigintEvent();
ResetEvent(hInterruptEvent);
- rc = WaitForSingleObject(hInterruptEvent, ul_millis);
+ rc = WaitForSingleObjectEx(hInterruptEvent, ul_millis, FALSE);
if (rc == WAIT_OBJECT_0) {
Py_BLOCK_THREADS
errno = EINTR;