Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/window.cc')
-rw-r--r--winsup/cygwin/window.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/window.cc b/winsup/cygwin/window.cc
index 953f603ba..2a1dafb62 100644
--- a/winsup/cygwin/window.cc
+++ b/winsup/cygwin/window.cc
@@ -18,6 +18,8 @@ details. */
#include <limits.h>
#include <wingdi.h>
#include <winuser.h>
+#define USE_SYS_TYPES_FD_SET
+#include <winsock2.h>
#include <unistd.h>
#include "cygerrno.h"
#include "perprocess.h"
@@ -61,7 +63,10 @@ WndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
}
return 0;
case WM_ASYNCIO:
- raise (SIGIO);
+ if (WSAGETSELECTEVENT(lParam) == FD_OOB)
+ raise (SIGURG);
+ else
+ raise (SIGIO);
return 0;
default:
return DefWindowProc (hwnd, uMsg, wParam, lParam);