~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 
3
 
Copyright (c) 1994, 2009, Innobase Oy. All Rights Reserved.
 
3
Copyright (C) 1994, 2010, 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., 59 Temple
15
 
Place, Suite 330, Boston, MA 02111-1307 USA
 
14
this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
 
15
St, Fifth Floor, Boston, MA 02110-1301 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
 
85
92
/**************************************************************//**
86
93
Use this macro instead of the corresponding function! Macro for memory
87
94
heap creation. */
225
232
with mem_free.
226
233
@return own: free storage */
227
234
UNIV_INLINE
228
 
void*
 
235
void *
229
236
mem_alloc_func(
230
237
/*===========*/
231
238
        ulint           n,              /*!< in: requested size in bytes */
352
359
                        to the heap is also the first block in this list,
353
360
                        though it also contains the base node of the list. */
354
361
        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. */
355
365
        ulint   type;   /*!< type of heap: MEM_HEAP_DYNAMIC, or
356
366
                        MEM_HEAP_BUF possibly ORed to MEM_HEAP_BTR_SEARCH */
357
367
        ulint   free;   /*!< offset in bytes of the first free position for