Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
c31d71c0
Commit
c31d71c0
authored
Jul 12, 2005
by
reggie@linux.site
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some vio code that was using ___WIN__ instead of __WIN__
parent
25deb84c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
include/my_global.h
include/my_global.h
+1
-1
sql/net_serv.cc
sql/net_serv.cc
+1
-1
vio/vio.c
vio/vio.c
+2
-2
vio/viosocket.c
vio/viosocket.c
+2
-2
No files found.
include/my_global.h
View file @
c31d71c0
...
...
@@ -797,7 +797,7 @@ typedef off_t os_off_t;
#define socket_errno WSAGetLastError()
#define SOCKET_EINTR WSAEINTR
#define SOCKET_EAGAIN WSAEINPROGRESS
#define SOCKET_EWOULDBLOCK WSAE
INPROGRESS
#define SOCKET_EWOULDBLOCK WSAE
WOULDBLOCK
#define SOCKET_ENFILE ENFILE
#define SOCKET_EMFILE EMFILE
#elif defined(OS2)
...
...
sql/net_serv.cc
View file @
c31d71c0
...
...
@@ -132,7 +132,7 @@ my_bool my_net_init(NET *net, Vio* vio)
if
(
vio
!=
0
)
/* If real connection */
{
net
->
fd
=
vio_fd
(
vio
);
/* For perl DBI/DBD */
#if defined(MYSQL_SERVER) && !defined(__
_
WIN__) && !defined(__EMX__) && !defined(OS2)
#if defined(MYSQL_SERVER) && !defined(__WIN__) && !defined(__EMX__) && !defined(OS2)
if
(
!
(
test_flags
&
TEST_BLOCKING
))
{
my_bool
old_mode
;
...
...
vio/vio.c
View file @
c31d71c0
...
...
@@ -130,7 +130,7 @@ Vio *vio_new(my_socket sd, enum enum_vio_type type, my_bool localhost)
sprintf
(
vio
->
desc
,
(
vio
->
type
==
VIO_TYPE_SOCKET
?
"socket (%d)"
:
"TCP/IP (%d)"
),
vio
->
sd
);
#if !defined(__
_
WIN__) && !defined(__EMX__) && !defined(OS2)
#if !defined(__WIN__) && !defined(__EMX__) && !defined(OS2)
#if !defined(NO_FCNTL_NONBLOCK)
#if defined(__FreeBSD__)
fcntl
(
sd
,
F_SETFL
,
vio
->
fcntl_mode
);
/* Yahoo! FreeBSD patch */
...
...
@@ -145,7 +145,7 @@ Vio *vio_new(my_socket sd, enum enum_vio_type type, my_bool localhost)
{
/* set to blocking mode by default */
ulong
arg
=
0
,
r
;
r
=
ioctlsocket
(
sd
,
FIONBIO
,(
void
*
)
&
arg
,
sizeof
(
arg
)
);
r
=
ioctlsocket
(
sd
,
FIONBIO
,(
void
*
)
&
arg
);
vio
->
fcntl_mode
&=
~
O_NONBLOCK
;
}
#endif
...
...
vio/viosocket.c
View file @
c31d71c0
...
...
@@ -82,7 +82,7 @@ int vio_blocking(Vio * vio __attribute__((unused)), my_bool set_blocking_mode,
DBUG_PRINT
(
"enter"
,
(
"set_blocking_mode: %d old_mode: %d"
,
(
int
)
set_blocking_mode
,
(
int
)
*
old_mode
));
#if !defined(__
_
WIN__) && !defined(__EMX__)
#if !defined(__WIN__) && !defined(__EMX__)
#if !defined(NO_FCNTL_NONBLOCK)
if
(
vio
->
sd
>=
0
)
{
...
...
@@ -115,7 +115,7 @@ int vio_blocking(Vio * vio __attribute__((unused)), my_bool set_blocking_mode,
vio
->
fcntl_mode
|=
O_NONBLOCK
;
/* set bit */
}
if
(
old_fcntl
!=
vio
->
fcntl_mode
)
r
=
ioctlsocket
(
vio
->
sd
,
FIONBIO
,(
void
*
)
&
arg
,
sizeof
(
arg
)
);
r
=
ioctlsocket
(
vio
->
sd
,
FIONBIO
,(
void
*
)
&
arg
);
}
#ifndef __EMX__
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment