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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
90e50d96
Commit
90e50d96
authored
May 20, 2009
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: Fix some function comments.
parent
931572df
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
14 deletions
+20
-14
include/dict0dict.h
include/dict0dict.h
+2
-2
include/os0file.h
include/os0file.h
+8
-5
include/trx0sys.h
include/trx0sys.h
+1
-1
os/os0file.c
os/os0file.c
+8
-5
trx/trx0sys.c
trx/trx0sys.c
+1
-1
No files found.
include/dict0dict.h
View file @
90e50d96
...
@@ -440,8 +440,8 @@ dict_foreign_find_equiv_index(
...
@@ -440,8 +440,8 @@ dict_foreign_find_equiv_index(
foreign->foreign_index, or NULL */
foreign->foreign_index, or NULL */
dict_foreign_t
*
foreign
);
/* in: foreign key */
dict_foreign_t
*
foreign
);
/* in: foreign key */
/**************************************************************************
/**************************************************************************
Returns an index object by matching on the name and column names and
if
Returns an index object by matching on the name and column names and
more than index is found return the index with the higher id.
*/
if more than one index matches return the index with the max id
*/
UNIV_INTERN
UNIV_INTERN
dict_index_t
*
dict_index_t
*
dict_table_get_index_by_max_id
(
dict_table_get_index_by_max_id
(
...
...
include/os0file.h
View file @
90e50d96
...
@@ -614,11 +614,14 @@ os_aio(
...
@@ -614,11 +614,14 @@ os_aio(
ulint
offset_high
,
/* in: most significant 32 bits of
ulint
offset_high
,
/* in: most significant 32 bits of
offset */
offset */
ulint
n
,
/* in: number of bytes to read or write */
ulint
n
,
/* in: number of bytes to read or write */
fil_node_t
*
message1
,
/* in: messages for the aio handler (these
fil_node_t
*
message1
,
/* in: message for the aio handler
can be used to identify a completed aio
(can be used to identify a completed
operation); if mode is OS_AIO_SYNC, these
aio operation); ignored if mode is
are ignored */
OS_AIO_SYNC */
void
*
message2
);
void
*
message2
);
/* in: message for the aio handler
(can be used to identify a completed
aio operation); ignored if mode is
OS_AIO_SYNC */
/****************************************************************************
/****************************************************************************
Wakes up all async i/o threads so that they know to exit themselves in
Wakes up all async i/o threads so that they know to exit themselves in
shutdown. */
shutdown. */
...
...
include/trx0sys.h
View file @
90e50d96
...
@@ -84,7 +84,7 @@ UNIV_INTERN
...
@@ -84,7 +84,7 @@ UNIV_INTERN
void
void
trx_sys_doublewrite_init_or_restore_pages
(
trx_sys_doublewrite_init_or_restore_pages
(
/*======================================*/
/*======================================*/
ibool
restore_corrupt_pages
);
ibool
restore_corrupt_pages
);
/* in: TRUE=restore pages */
/********************************************************************
/********************************************************************
Marks the trx sys header when we have successfully upgraded to the >= 4.1.x
Marks the trx sys header when we have successfully upgraded to the >= 4.1.x
multiple tablespace format. */
multiple tablespace format. */
...
...
os/os0file.c
View file @
90e50d96
...
@@ -3371,11 +3371,14 @@ os_aio(
...
@@ -3371,11 +3371,14 @@ os_aio(
ulint
offset_high
,
/* in: most significant 32 bits of
ulint
offset_high
,
/* in: most significant 32 bits of
offset */
offset */
ulint
n
,
/* in: number of bytes to read or write */
ulint
n
,
/* in: number of bytes to read or write */
fil_node_t
*
message1
,
/* in: messages for the aio handler (these
fil_node_t
*
message1
,
/* in: message for the aio handler
can be used to identify a completed aio
(can be used to identify a completed
operation); if mode is OS_AIO_SYNC, these
aio operation); ignored if mode is
are ignored */
OS_AIO_SYNC */
void
*
message2
)
void
*
message2
)
/* in: message for the aio handler
(can be used to identify a completed
aio operation); ignored if mode is
OS_AIO_SYNC */
{
{
os_aio_array_t
*
array
;
os_aio_array_t
*
array
;
os_aio_slot_t
*
slot
;
os_aio_slot_t
*
slot
;
...
...
trx/trx0sys.c
View file @
90e50d96
...
@@ -403,7 +403,7 @@ UNIV_INTERN
...
@@ -403,7 +403,7 @@ UNIV_INTERN
void
void
trx_sys_doublewrite_init_or_restore_pages
(
trx_sys_doublewrite_init_or_restore_pages
(
/*======================================*/
/*======================================*/
ibool
restore_corrupt_pages
)
ibool
restore_corrupt_pages
)
/* in: TRUE=restore pages */
{
{
byte
*
buf
;
byte
*
buf
;
byte
*
read_buf
;
byte
*
read_buf
;
...
...
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