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
5c189423
Commit
5c189423
authored
Dec 31, 2000
by
monty@donna.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanups
parent
e390213a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
include/violite.h
include/violite.h
+1
-2
libmysql/libmysql.c
libmysql/libmysql.c
+1
-1
sql/violite.c
sql/violite.c
+1
-2
No files found.
include/violite.h
View file @
5c189423
...
...
@@ -70,8 +70,7 @@ my_bool vio_is_blocking( Vio* vio);
/*
* setsockopt TCP_NODELAY at IPPROTO_TCP level, when possible.
*/
int
vio_fastsend
(
Vio
*
vio
,
my_bool
onoff
);
int
vio_fastsend
(
Vio
*
vio
,);
/*
* setsockopt SO_KEEPALIVE at SOL_SOCKET level, when possible.
*/
...
...
libmysql/libmysql.c
View file @
5c189423
...
...
@@ -576,7 +576,7 @@ append_wild(char *to, char *end, const char *wild)
**************************************************************************/
void
STDCALL
mysql_debug
(
const
char
*
debug
)
mysql_debug
(
const
char
*
debug
__attribute__
((
unused
))
)
{
#ifndef DBUG_OFF
char
*
env
;
...
...
sql/violite.c
View file @
5c189423
...
...
@@ -265,11 +265,10 @@ vio_is_blocking(Vio * vio)
}
int
vio_fastsend
(
Vio
*
vio
__attribute__
((
unused
))
,
my_bool
onoff
)
int
vio_fastsend
(
Vio
*
vio
__attribute__
((
unused
)))
{
int
r
=
0
;
DBUG_ENTER
(
"vio_fastsend"
);
DBUG_PRINT
(
"enter"
,
(
"onoff:%d"
,
(
int
)
onoff
));
#ifdef IPTOS_THROUGHPUT
{
...
...
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