Problem: Win32: opening a channel may hang. Not checking for messages
while waiting for characters.
Solution: Add a zero timeout. Call parse_queued_messages(). (Yasuhiro
Matsumoto)
*/
for (;;)
{
+#ifdef MESSAGE_QUEUE
+ parse_queued_messages();
+#endif
#ifdef FEAT_MZSCHEME
mzvim_check_threads();
#endif
-
#ifdef FEAT_CLIENTSERVER
serverProcessPendingMessages();
#endif
maxfd = channel_select_setup(-1, &rfds);
if (maxfd >= 0)
{
- ret = select(maxfd + 1, &rfds, NULL, NULL, NULL);
+ struct timeval tv;
+
+ tv.tv_sec = 0;
+ tv.tv_usec = 0;
+ ret = select(maxfd + 1, &rfds, NULL, NULL, &tv);
if (ret > 0 && channel_select_check(ret, &rfds) > 0)
return TRUE;
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1230,
/**/
1229,
/**/