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
1ea4690b
Commit
1ea4690b
authored
Jul 26, 2002
by
heikki@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dyn0dyn.ic, dyn0dyn.h:
Backport the AIX crash fix changes from 4.0
parent
4b2f5cce
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
innobase/include/dyn0dyn.h
innobase/include/dyn0dyn.h
+1
-1
innobase/include/dyn0dyn.ic
innobase/include/dyn0dyn.ic
+3
-1
No files found.
innobase/include/dyn0dyn.h
View file @
1ea4690b
...
...
@@ -17,7 +17,7 @@ typedef struct dyn_block_struct dyn_block_t;
typedef
dyn_block_t
dyn_array_t
;
/*
Initial 'payload' size in bytes in a dynamic array block
*/
/*
This must be > MLOG_BUF_MARGIN + 30
*/
#define DYN_ARRAY_DATA_SIZE 512
/*************************************************************************
...
...
innobase/include/dyn0dyn.ic
View file @
1ea4690b
...
...
@@ -185,7 +185,8 @@ dyn_array_open(
/*===========*/
/* out: pointer to the buffer */
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! */
{
dyn_block_t* block;
ulint used;
...
...
@@ -207,6 +208,7 @@ dyn_array_open(
if (used + size > DYN_ARRAY_DATA_SIZE) {
block = dyn_array_add_block(arr);
used = block->used;
ut_a(size <= DYN_ARRAY_DATA_SIZE);
}
}
...
...
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