diff options
author | James Ross-Gowan <rossymiles@gmail.com> | 2015-12-07 18:51:33 +1100 |
---|---|---|
committer | James Ross-Gowan <rossymiles@gmail.com> | 2015-12-20 21:06:02 +1100 |
commit | 7558d1ed7b86dbd23504f743d27973556ed68dff (patch) | |
tree | 85021c91c3dc91d690636aa3230154b3300cf27d /TOOLS | |
parent | 0563eb914f2d4243c00bbd31175658e595dd3763 (diff) |
win32: input: use Vista CancelIoEx
libwaio was added due to the complete inability to cancel synchronous
I/O cleanly using the public Windows API in Windows XP. Even calling
TerminateThread on the thread performing I/O was a bad solution, because
the TerminateThread function in XP would leak the thread's stack.
In Vista and up, however, this is no longer a problem. CancelIoEx can
cancel synchronous I/O running on other threads, allowing the thread to
exit cleanly, so replace libwaio usage with native Vista API functions.
It should be noted that this change also removes the hack added in
8a27025 for preventing a deadlock that only seemed to happen in Windows
XP. KB2009703 says that Vista and up are not affected by this, due to a
change in the implementation of GetFileType, so the hack should not be
needed anymore.
Diffstat (limited to 'TOOLS')
-rwxr-xr-x | TOOLS/old-configure | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/TOOLS/old-configure b/TOOLS/old-configure index 6b5635c2e1..3dea7029ed 100755 --- a/TOOLS/old-configure +++ b/TOOLS/old-configure @@ -954,7 +954,6 @@ cat > $TMPC << EOF #define HAVE_GLOB 1 #define HAVE_NANOSLEEP 1 #define HAVE_SDL1 0 -#define HAVE_WAIO 0 #define HAVE_POSIX_SPAWN 1 #define HAVE_GLIBC_THREAD_NAME (!!__GLIBC__) #define HAVE_OSX_THREAD_NAME 0 |