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
aa5ceec5
Commit
aa5ceec5
authored
May 25, 2009
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: Add missing file comments.
parent
aff9b385
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
55 additions
and
3 deletions
+55
-3
include/ha_prototypes.h
include/ha_prototypes.h
+7
-3
include/ut0list.h
include/ut0list.h
+6
-0
include/ut0list.ic
include/ut0list.ic
+6
-0
include/ut0vec.h
include/ut0vec.h
+6
-0
include/ut0vec.ic
include/ut0vec.ic
+6
-0
include/ut0wqueue.h
include/ut0wqueue.h
+6
-0
ut/ut0list.c
ut/ut0list.c
+6
-0
ut/ut0vec.c
ut/ut0vec.c
+6
-0
ut/ut0wqueue.c
ut/ut0wqueue.c
+6
-0
No files found.
include/ha_prototypes.h
View file @
aa5ceec5
...
...
@@ -16,15 +16,19 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*****************************************************************************/
/***********************************************************************
Prototypes for global functions in ha_innodb.cc that are called by
InnoDB C code
Created 5/11/2006 Osku Salerma
************************************************************************/
#ifndef HA_INNODB_PROTOTYPES_H
#define HA_INNODB_PROTOTYPES_H
#include "trx0types.h"
#include "m_ctype.h"
/* CHARSET_INFO */
/* Prototypes for global functions in ha_innodb.cc that are called by
InnoDB's C-code. */
/*************************************************************************
Wrapper around MySQL's copy_and_convert function.
@return number of bytes copied to 'to' */
...
...
include/ut0list.h
View file @
aa5ceec5
...
...
@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*****************************************************************************/
/***********************************************************************
A double-linked list
Created 4/26/2006 Osku Salerma
************************************************************************/
/***********************************************************************
A double-linked list. This differs from the one in ut0lst.h in that in this
one, each list node contains a pointer to the data, whereas the one in
...
...
include/ut0list.ic
View file @
aa5ceec5
...
...
@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*****************************************************************************/
/***********************************************************************
A double-linked list
Created 4/26/2006 Osku Salerma
************************************************************************/
/********************************************************************
Get the first node in the list.
@return first node, or NULL */
...
...
include/ut0vec.h
View file @
aa5ceec5
...
...
@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*****************************************************************************/
/***********************************************************************
A vector of pointers to data items
Created 4/6/2006 Osku Salerma
************************************************************************/
#ifndef IB_VECTOR_H
#define IB_VECTOR_H
...
...
include/ut0vec.ic
View file @
aa5ceec5
...
...
@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*****************************************************************************/
/***********************************************************************
A vector of pointers to data items
Created 4/6/2006 Osku Salerma
************************************************************************/
/********************************************************************
Get number of elements in vector.
@return number of elements in vector */
...
...
include/ut0wqueue.h
View file @
aa5ceec5
...
...
@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*****************************************************************************/
/***********************************************************************
A work queue
Created 4/26/2006 Osku Salerma
************************************************************************/
/***********************************************************************
A Work queue. Threads can add work items to the queue and other threads can
wait for work items to be available and take them off the queue for
...
...
ut/ut0list.c
View file @
aa5ceec5
...
...
@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*****************************************************************************/
/***********************************************************************
A double-linked list
Created 4/26/2006 Osku Salerma
************************************************************************/
#include "ut0list.h"
#ifdef UNIV_NONINL
#include "ut0list.ic"
...
...
ut/ut0vec.c
View file @
aa5ceec5
...
...
@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*****************************************************************************/
/***********************************************************************
A vector of pointers to data items
Created 4/6/2006 Osku Salerma
************************************************************************/
#include "ut0vec.h"
#ifdef UNIV_NONINL
#include "ut0vec.ic"
...
...
ut/ut0wqueue.c
View file @
aa5ceec5
...
...
@@ -18,6 +18,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA
#include "ut0wqueue.h"
/***********************************************************************
A work queue
Created 4/26/2006 Osku Salerma
************************************************************************/
/********************************************************************
Create a new work queue.
@return work queue */
...
...
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