/*
* Check for reading from "fd" with "timeout" msec.
* Return FAIL when there is nothing to read.
+ * Always returns OK for FEAT_GUI_W32.
*/
static int
channel_wait(int fd, int timeout)
{
-#ifdef HAVE_SELECT
+#if defined(HAVE_SELECT) && !defined(FEAT_GUI_W32)
struct timeval tval;
fd_set rfds;
int ret;
if (len < MAXMSGSIZE)
break; /* did read everything that's available */
}
+#ifdef FEAT_GUI_W32
+ if (len == SOCKET_ERROR)
+ {
+ /* For Win32 GUI channel_wait() always returns OK and we handle the
+ * situation that there is nothing to read here.
+ * TODO: how about a timeout? */
+ if (WSAGetLastError() == WSAEWOULDBLOCK)
+ return;
+ }
+#endif
/* Reading a socket disconnection (readlen == 0), or a socket error. */
if (readlen <= 0)
endif
" This test requires the Python command to run the test server.
-" This most likely only works on Unix and Windows console.
+" This most likely only works on Unix and Windows.
if has('unix')
" We also need the pkill command to make sure the server can be stopped.
if !executable('python') || !executable('pkill')
finish
endif
-elseif has('win32') && !has('gui_win32')
+elseif has('win32')
" Use Python Launcher for Windows (py.exe).
if !executable('py')
finish