List:Internals« Previous MessageNext Message »
From:Jim Winstead Date:September 1 2005 12:04am
Subject:bk commit into 4.1 tree (jimw:1.2402) BUG#12723
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of jimw. When jimw does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.2402 05/08/31 15:04:25 jimw@stripped +1 -0
  Fix shared memory connection handling on Windows. (Bug #12723)

  vio/viosocket.c
    1.33 05/08/31 15:04:22 jimw@stripped +1 -1
    Don't pay attention to changes of nonblocking flag for shared memory
    connections.

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	jimw
# Host:	rama.(none)
# Root:	/home/jimw/my/mysql-4.1-12723

--- 1.32/vio/viosocket.c	2005-07-12 07:56:30 -07:00
+++ 1.33/vio/viosocket.c	2005-08-31 15:04:22 -07:00
@@ -99,7 +99,7 @@
 #endif /* !defined(NO_FCNTL_NONBLOCK) */
 #else /* !defined(__WIN__) && !defined(__EMX__) */
 #ifndef __EMX__
-  if (vio->type != VIO_TYPE_NAMEDPIPE)  
+  if (vio->type != VIO_TYPE_NAMEDPIPE && vio->type !=
VIO_TYPE_SHARED_MEMORY)
 #endif
   { 
     ulong arg;
Thread
bk commit into 4.1 tree (jimw:1.2402) BUG#12723Jim Winstead1 Sep