1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fix shared memory connection handling on Windows. (Bug #12723)

vio/viosocket.c:
  Don't pay attention to changes of nonblocking flag for shared memory
  connections.
This commit is contained in:
unknown
2005-08-31 15:04:25 -07:00
parent 88dedca284
commit d40da89e2d

View File

@@ -99,7 +99,7 @@ int vio_blocking(Vio * vio __attribute__((unused)), my_bool set_blocking_mode,
#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;