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
af88ae0a
Commit
af88ae0a
authored
Aug 03, 2004
by
marko@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Plain Diff
Merge marko@build.mysql.com:/home/bk/mysql-4.0
into hundin.mysql.fi:/home/marko/k/mysql-4.0
parents
fab9fcb0
2f3e6286
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
innobase/include/dyn0dyn.h
innobase/include/dyn0dyn.h
+2
-1
innobase/include/mtr0log.h
innobase/include/mtr0log.h
+2
-1
innobase/include/mtr0log.ic
innobase/include/mtr0log.ic
+2
-1
No files found.
innobase/include/dyn0dyn.h
View file @
af88ae0a
...
@@ -47,7 +47,8 @@ dyn_array_open(
...
@@ -47,7 +47,8 @@ dyn_array_open(
/*===========*/
/*===========*/
/* out: pointer to the buffer */
/* out: pointer to the buffer */
dyn_array_t
*
arr
,
/* in: dynamic array */
dyn_array_t
*
arr
,
/* in: dynamic array */
ulint
size
);
/* in: size in bytes of the buffer */
ulint
size
);
/* in: size in bytes of the buffer; MUST be
smaller than DYN_ARRAY_DATA_SIZE! */
/*************************************************************************
/*************************************************************************
Closes the buffer returned by dyn_array_open. */
Closes the buffer returned by dyn_array_open. */
UNIV_INLINE
UNIV_INLINE
...
...
innobase/include/mtr0log.h
View file @
af88ae0a
...
@@ -98,7 +98,8 @@ mlog_open(
...
@@ -98,7 +98,8 @@ mlog_open(
/*======*/
/*======*/
/* out: buffer, NULL if log mode MTR_LOG_NONE */
/* out: buffer, NULL if log mode MTR_LOG_NONE */
mtr_t
*
mtr
,
/* in: mtr */
mtr_t
*
mtr
,
/* in: mtr */
ulint
size
);
/* in: buffer size in bytes */
ulint
size
);
/* in: buffer size in bytes; MUST be
smaller than DYN_ARRAY_DATA_SIZE! */
/************************************************************
/************************************************************
Closes a buffer opened to mlog. */
Closes a buffer opened to mlog. */
UNIV_INLINE
UNIV_INLINE
...
...
innobase/include/mtr0log.ic
View file @
af88ae0a
...
@@ -18,7 +18,8 @@ mlog_open(
...
@@ -18,7 +18,8 @@ mlog_open(
/*======*/
/*======*/
/* out: buffer, NULL if log mode MTR_LOG_NONE */
/* out: buffer, NULL if log mode MTR_LOG_NONE */
mtr_t* mtr, /* in: mtr */
mtr_t* mtr, /* in: mtr */
ulint size) /* in: buffer size in bytes */
ulint size) /* in: buffer size in bytes; MUST be
smaller than DYN_ARRAY_DATA_SIZE! */
{
{
dyn_array_t* mlog;
dyn_array_t* mlog;
...
...
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