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
75dce25c
Commit
75dce25c
authored
Jun 05, 2010
by
Davi Arnaut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-merge fix: header is used by the client API. Obvious in retrospect.
Also, update a few cases missed by the initial patch.
parent
5dec0c96
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
8 deletions
+17
-8
client/mysqltest.cc
client/mysqltest.cc
+1
-1
include/my_alloc.h
include/my_alloc.h
+6
-2
include/mysql.h.pp
include/mysql.h.pp
+0
-2
plugin/semisync/semisync_master.h
plugin/semisync/semisync_master.h
+1
-1
sql/debug_sync.cc
sql/debug_sync.cc
+9
-2
No files found.
client/mysqltest.cc
View file @
75dce25c
...
...
@@ -87,7 +87,7 @@ enum {
OPT_SKIP_SAFEMALLOC
=
OPT_MAX_CLIENT_OPTION
,
OPT_PS_PROTOCOL
,
OPT_SP_PROTOCOL
,
OPT_CURSOR_PROTOCOL
,
OPT_VIEW_PROTOCOL
,
OPT_MAX_CONNECT_RETRIES
,
OPT_MAX_CONNECTIONS
,
OPT_MARK_PROGRESS
,
OPT_LOG_DIR
,
OPT_TAIL_LINES
,
OPT_RESULT_FORMAT_VERSION
,
OPT_LOG_DIR
,
OPT_TAIL_LINES
,
OPT_RESULT_FORMAT_VERSION
};
static
int
record
=
0
,
opt_sleep
=
-
1
;
...
...
include/my_alloc.h
View file @
75dce25c
...
...
@@ -23,7 +23,9 @@
#define ALLOC_MAX_BLOCK_TO_DROP 4096
#define ALLOC_MAX_BLOCK_USAGE_BEFORE_DROP 10
C_MODE_START
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
struct
st_used_mem
{
/* struct for once_alloc (block) */
...
...
@@ -51,6 +53,8 @@ typedef struct st_mem_root
void
(
*
error_handler
)(
void
);
}
MEM_ROOT
;
C_MODE_END
#ifdef __cplusplus
}
#endif
#endif
include/mysql.h.pp
View file @
75dce25c
...
...
@@ -202,7 +202,6 @@ typedef unsigned int MYSQL_FIELD_OFFSET;
typedef
unsigned
long
long
my_ulonglong
;
#include "typelib.h"
#include "my_alloc.h"
C_MODE_START
typedef
struct
st_used_mem
{
struct
st_used_mem
*
next
;
...
...
@@ -220,7 +219,6 @@ typedef struct st_mem_root
unsigned
int
first_block_usage
;
void
(
*
error_handler
)(
void
);
}
MEM_ROOT
;
C_MODE_END
typedef
struct
st_typelib
{
unsigned
int
count
;
const
char
*
name
;
...
...
plugin/semisync/semisync_master.h
View file @
75dce25c
...
...
@@ -153,7 +153,7 @@ public:
int
free_nodes_before
(
TranxNode
*
node
)
{
Block
*
block
;
Block
*
prev_block
;
Block
*
prev_block
=
NULL
;
block
=
first_block
;
while
(
block
!=
current_block
->
next
)
...
...
sql/debug_sync.cc
View file @
75dce25c
...
...
@@ -387,6 +387,13 @@ static st_debug_sync_globals debug_sync_global; /* All globals in one object */
*/
extern
"C"
void
(
*
debug_sync_C_callback_ptr
)(
const
char
*
,
size_t
);
/**
Callbacks from C files.
*/
C_MODE_START
static
void
debug_sync_C_callback
(
const
char
*
,
size_t
);
static
int
debug_sync_qsort_cmp
(
const
void
*
,
const
void
*
);
C_MODE_END
/**
Callback for debug sync, to be used by C files. See thr_lock.c for example.
...
...
@@ -422,8 +429,8 @@ extern "C" void (*debug_sync_C_callback_ptr)(const char *, size_t);
static
void
debug_sync_C_callback
(
const
char
*
sync_point_name
,
size_t
name_len
)
{
if
(
unlikely
(
opt_debug_sync_timeout
))
debug_sync
(
current_thd
,
sync_point_name
,
name_len
);
if
(
unlikely
(
opt_debug_sync_timeout
))
debug_sync
(
current_thd
,
sync_point_name
,
name_len
);
}
#ifdef HAVE_PSI_INTERFACE
...
...
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