0
0
mirror of https://github.com/vim/vim.git synced 2025-09-07 22:03:36 -04:00

patch 7.4.1260

Problem:    The channel feature doesn't work on Win32 GUI.
Solution:   Use WSAGetLastError(). (Ken Takata)
This commit is contained in:
Bram Moolenaar 2016-02-04 22:09:48 +01:00
parent 3fc3e14282
commit a8343c1808
4 changed files with 17 additions and 4 deletions

View File

@ -954,11 +954,12 @@ channel_clear(int idx)
/* /*
* Check for reading from "fd" with "timeout" msec. * Check for reading from "fd" with "timeout" msec.
* Return FAIL when there is nothing to read. * Return FAIL when there is nothing to read.
* Always returns OK for FEAT_GUI_W32.
*/ */
static int static int
channel_wait(int fd, int timeout) channel_wait(int fd, int timeout)
{ {
#ifdef HAVE_SELECT #if defined(HAVE_SELECT) && !defined(FEAT_GUI_W32)
struct timeval tval; struct timeval tval;
fd_set rfds; fd_set rfds;
int ret; int ret;
@ -1045,6 +1046,16 @@ channel_read(int idx)
if (len < MAXMSGSIZE) if (len < MAXMSGSIZE)
break; /* did read everything that's available */ 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. */ /* Reading a socket disconnection (readlen == 0), or a socket error. */
if (readlen <= 0) if (readlen <= 0)

View File

@ -6,13 +6,13 @@ if !has('channel')
endif endif
" This test requires the Python command to run the test server. " 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') if has('unix')
" We also need the pkill command to make sure the server can be stopped. " We also need the pkill command to make sure the server can be stopped.
if !executable('python') || !executable('pkill') if !executable('python') || !executable('pkill')
finish finish
endif endif
elseif has('win32') && !has('gui_win32') elseif has('win32')
" Use Python Launcher for Windows (py.exe). " Use Python Launcher for Windows (py.exe).
if !executable('py') if !executable('py')
finish finish

View File

@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1260,
/**/ /**/
1259, 1259,
/**/ /**/

View File

@ -519,7 +519,7 @@ typedef unsigned long u8char_T; /* long should be 32 bits or more */
# ifdef HAVE_SYS_POLL_H # ifdef HAVE_SYS_POLL_H
# include <sys/poll.h> # include <sys/poll.h>
# define HAVE_POLL # define HAVE_POLL
# elif defined(WIN32) && !defined(FEAT_GUI_W32) # elif defined(WIN32)
# define HAVE_SELECT # define HAVE_SELECT
# else # else
# ifdef HAVE_POLL_H # ifdef HAVE_POLL_H