Commit aa5ceec5 authored by marko's avatar marko

branches/zip: Add missing file comments.

parent aff9b385
...@@ -16,15 +16,19 @@ Place, Suite 330, Boston, MA 02111-1307 USA ...@@ -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 #ifndef HA_INNODB_PROTOTYPES_H
#define HA_INNODB_PROTOTYPES_H #define HA_INNODB_PROTOTYPES_H
#include "trx0types.h" #include "trx0types.h"
#include "m_ctype.h" /* CHARSET_INFO */ #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. Wrapper around MySQL's copy_and_convert function.
@return number of bytes copied to 'to' */ @return number of bytes copied to 'to' */
......
...@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA ...@@ -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 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 one, each list node contains a pointer to the data, whereas the one in
......
...@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA ...@@ -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. Get the first node in the list.
@return first node, or NULL */ @return first node, or NULL */
......
...@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA ...@@ -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 #ifndef IB_VECTOR_H
#define IB_VECTOR_H #define IB_VECTOR_H
......
...@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA ...@@ -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. Get number of elements in vector.
@return number of elements in vector */ @return number of elements in vector */
......
...@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA ...@@ -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 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 wait for work items to be available and take them off the queue for
......
...@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA ...@@ -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" #include "ut0list.h"
#ifdef UNIV_NONINL #ifdef UNIV_NONINL
#include "ut0list.ic" #include "ut0list.ic"
......
...@@ -16,6 +16,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA ...@@ -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" #include "ut0vec.h"
#ifdef UNIV_NONINL #ifdef UNIV_NONINL
#include "ut0vec.ic" #include "ut0vec.ic"
......
...@@ -18,6 +18,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA ...@@ -18,6 +18,12 @@ Place, Suite 330, Boston, MA 02111-1307 USA
#include "ut0wqueue.h" #include "ut0wqueue.h"
/***********************************************************************
A work queue
Created 4/26/2006 Osku Salerma
************************************************************************/
/******************************************************************** /********************************************************************
Create a new work queue. Create a new work queue.
@return work queue */ @return work queue */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment