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
db9dc3bb
Commit
db9dc3bb
authored
May 19, 2009
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: Add missing out: comments to nullary functions.
parent
a7942035
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
14 additions
and
0 deletions
+14
-0
buf/buf0lru.c
buf/buf0lru.c
+1
-0
include/buf0lru.h
include/buf0lru.h
+1
-0
include/log0recv.h
include/log0recv.h
+2
-0
include/log0recv.ic
include/log0recv.ic
+2
-0
include/pars0pars.h
include/pars0pars.h
+2
-0
include/srv0srv.h
include/srv0srv.h
+1
-0
include/sync0rw.h
include/sync0rw.h
+1
-0
pars/pars0pars.c
pars/pars0pars.c
+2
-0
srv/srv0srv.c
srv/srv0srv.c
+1
-0
sync/sync0rw.c
sync/sync0rw.c
+1
-0
No files found.
buf/buf0lru.c
View file @
db9dc3bb
...
...
@@ -1892,6 +1892,7 @@ UNIV_INTERN
ibool
buf_LRU_validate
(
void
)
/*==================*/
/* out: TRUE */
{
buf_page_t
*
bpage
;
buf_block_t
*
block
;
...
...
include/buf0lru.h
View file @
db9dc3bb
...
...
@@ -219,6 +219,7 @@ UNIV_INTERN
ibool
buf_LRU_validate
(
void
);
/*==================*/
/* out: TRUE */
#endif
/* UNIV_DEBUG || UNIV_BUF_DEBUG */
#if defined UNIV_DEBUG_PRINT || defined UNIV_DEBUG || defined UNIV_BUF_DEBUG
/**************************************************************************
...
...
include/log0recv.h
View file @
db9dc3bb
...
...
@@ -77,6 +77,7 @@ UNIV_INLINE
ibool
recv_recovery_is_on
(
void
);
/*=====================*/
/* out: recv_recovery_on */
#ifdef UNIV_LOG_ARCHIVE
/***********************************************************************
Returns TRUE if recovery from backup is currently running. */
...
...
@@ -84,6 +85,7 @@ UNIV_INLINE
ibool
recv_recovery_from_backup_is_on
(
void
);
/*=================================*/
/* out: recv_recovery_from_backup_on */
#endif
/* UNIV_LOG_ARCHIVE */
/****************************************************************************
Applies the hashed log records to the page, if the page lsn is less than the
...
...
include/log0recv.ic
View file @
db9dc3bb
...
...
@@ -30,6 +30,7 @@ UNIV_INLINE
ibool
recv_recovery_is_on(void)
/*=====================*/
/* out: recv_recovery_on */
{
return(UNIV_UNLIKELY(recv_recovery_on));
}
...
...
@@ -43,6 +44,7 @@ UNIV_INLINE
ibool
recv_recovery_from_backup_is_on(void)
/*=================================*/
/* out: recv_recovery_from_backup_on */
{
return(recv_recovery_from_backup_on);
}
...
...
include/pars0pars.h
View file @
db9dc3bb
...
...
@@ -368,12 +368,14 @@ UNIV_INTERN
commit_node_t
*
pars_commit_statement
(
void
);
/*=======================*/
/* out, own: commit node struct */
/*************************************************************************
Parses a rollback statement. */
UNIV_INTERN
roll_node_t
*
pars_rollback_statement
(
void
);
/*=========================*/
/* out, own: rollback node struct */
/*************************************************************************
Parses a column definition at a table creation. */
UNIV_INTERN
...
...
include/srv0srv.h
View file @
db9dc3bb
...
...
@@ -370,6 +370,7 @@ UNIV_INTERN
ulint
srv_get_n_threads
(
void
);
/*===================*/
/* out: sum of srv_n_threads[] */
/*************************************************************************
Returns the calling thread type. */
...
...
include/sync0rw.h
View file @
db9dc3bb
...
...
@@ -453,6 +453,7 @@ UNIV_INTERN
ulint
rw_lock_n_locked
(
void
);
/*==================*/
/* out: number of locked rw-locks */
/*#####################################################################*/
...
...
pars/pars0pars.c
View file @
db9dc3bb
...
...
@@ -1555,6 +1555,7 @@ UNIV_INTERN
commit_node_t
*
pars_commit_statement
(
void
)
/*=======================*/
/* out, own: commit node struct */
{
return
(
commit_node_create
(
pars_sym_tab_global
->
heap
));
}
...
...
@@ -1565,6 +1566,7 @@ UNIV_INTERN
roll_node_t
*
pars_rollback_statement
(
void
)
/*=========================*/
/* out, own: rollback node struct */
{
return
(
roll_node_create
(
pars_sym_tab_global
->
heap
));
}
...
...
srv/srv0srv.c
View file @
db9dc3bb
...
...
@@ -664,6 +664,7 @@ UNIV_INTERN
ulint
srv_get_n_threads
(
void
)
/*===================*/
/* out: sum of srv_n_threads[] */
{
ulint
i
;
ulint
n_threads
=
0
;
...
...
sync/sync0rw.c
View file @
db9dc3bb
...
...
@@ -1010,6 +1010,7 @@ UNIV_INTERN
ulint
rw_lock_n_locked
(
void
)
/*==================*/
/* out: number of locked rw-locks */
{
rw_lock_t
*
lock
;
ulint
count
=
0
;
...
...
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