~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/mem0mem.h

  • Committer: lbieber
  • Date: 2010-09-11 16:33:45 UTC
  • mfrom: (1757.1.2 build)
  • Revision ID: lbieber@orisndriz03-20100911163345-na1t8m18at9thsjl
Merge Vijay - added utf 8 tamil test case suite and test case for creating a database in tamil
Merge Brian - Small set of refactoring (includes one case of memset on a table object).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 
3
 
Copyright (C) 1994, 2010, Innobase Oy. All Rights Reserved.
 
3
Copyright (c) 1994, 2009, Innobase Oy. All Rights Reserved.
4
4
 
5
5
This program is free software; you can redistribute it and/or modify it under
6
6
the terms of the GNU General Public License as published by the Free Software
11
11
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
12
 
13
13
You should have received a copy of the GNU General Public License along with
14
 
this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
15
 
St, Fifth Floor, Boston, MA 02110-1301 USA
 
14
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
 
15
Place, Suite 330, Boston, MA 02111-1307 USA
16
16
 
17
17
*****************************************************************************/
18
18
 
82
82
mem_init(
83
83
/*=====*/
84
84
        ulint   size);  /*!< in: common pool size in bytes */
85
 
/******************************************************************//**
86
 
Closes the memory system. */
87
 
UNIV_INTERN
88
 
void
89
 
mem_close(void);
90
 
/*===========*/
91
 
 
92
85
/**************************************************************//**
93
86
Use this macro instead of the corresponding function! Macro for memory
94
87
heap creation. */
232
225
with mem_free.
233
226
@return own: free storage */
234
227
UNIV_INLINE
235
 
void *
 
228
void*
236
229
mem_alloc_func(
237
230
/*===========*/
238
231
        ulint           n,              /*!< in: requested size in bytes */
359
352
                        to the heap is also the first block in this list,
360
353
                        though it also contains the base node of the list. */
361
354
        ulint   len;    /*!< physical length of this block in bytes */
362
 
        ulint   total_size; /*!< physical length in bytes of all blocks
363
 
                        in the heap. This is defined only in the base
364
 
                        node and is set to ULINT_UNDEFINED in others. */
365
355
        ulint   type;   /*!< type of heap: MEM_HEAP_DYNAMIC, or
366
356
                        MEM_HEAP_BUF possibly ORed to MEM_HEAP_BTR_SEARCH */
367
357
        ulint   free;   /*!< offset in bytes of the first free position for