malloc.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Prototypes and definition for malloc implementation.
  2.    Copyright (C) 1996,97,99,2000,2002,2003,2004 Free Software Foundation, Inc.
  3.    This file is part of the GNU C Library.
  4.    The GNU C Library is free software; you can redistribute it and/or
  5.    modify it under the terms of the GNU Lesser General Public
  6.    License as published by the Free Software Foundation; either
  7.    version 2.1 of the License, or (at your option) any later version.
  8.    The GNU C Library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Lesser General Public License for more details.
  12.    You should have received a copy of the GNU Lesser General Public
  13.    License along with the GNU C Library; if not, write to the Free
  14.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15.    02111-1307 USA.  */
  16. #ifndef _MALLOC_H
  17. #define _MALLOC_H 1
  18. #include <features.h>
  19. /*
  20.   $Id: malloc.h,v 1.26.4.1 2005/02/16 10:16:11 roland Exp $
  21.   `ptmalloc2', a malloc implementation for multiple threads without
  22.   lock contention, by Wolfram Gloger <wg@malloc.de>.
  23.   VERSION 2.7.0
  24.   This work is mainly derived from malloc-2.7.0 by Doug Lea
  25.   <dl@cs.oswego.edu>, which is available from:
  26.                  ftp://gee.cs.oswego.edu/pub/misc/malloc.c
  27.   This trimmed-down header file only provides function prototypes and
  28.   the exported data structures.  For more detailed function
  29.   descriptions and compile-time options, see the source file
  30.   `malloc.c'.
  31. */
  32. #if defined(__STDC__) || defined (__cplusplus)
  33. # include <stddef.h>
  34. # define __malloc_ptr_t  void *
  35. #else
  36. # undef  size_t
  37. # define size_t          unsigned int
  38. # undef  ptrdiff_t
  39. # define ptrdiff_t       int
  40. # define __malloc_ptr_t  char *
  41. #endif
  42. #ifdef _LIBC
  43. /* Used by GNU libc internals. */
  44. # define __malloc_size_t size_t
  45. # define __malloc_ptrdiff_t ptrdiff_t
  46. #elif !defined __attribute_malloc__
  47. # define __attribute_malloc__
  48. #endif
  49. #ifdef __GNUC__
  50. /* GCC can always grok prototypes.  For C++ programs we add throw()
  51.    to help it optimize the function calls.  But this works only with
  52.    gcc 2.8.x and egcs.  */
  53. # ifndef __THROW
  54. #  if defined __cplusplus && (__GNUC__ >= 3 || __GNUC_MINOR__ >= 8)
  55. #   define __THROW throw ()
  56. #  else
  57. #   define __THROW
  58. #  endif
  59. # endif
  60. # define __MALLOC_P(args) args __THROW
  61. /* This macro will be used for functions which might take C++ callback
  62.    functions.  */
  63. # define __MALLOC_PMT(args) args
  64. #else /* Not GCC.  */
  65. # define __THROW
  66. # if (defined __STDC__ && __STDC__) || defined __cplusplus
  67. #  define __MALLOC_P(args) args
  68. #  define __MALLOC_PMT(args) args
  69. #  ifndef __const
  70. #   define __const  const
  71. #  endif
  72. # else /* Not ANSI C or C++.  */
  73. #  define __MALLOC_P(args) () /* No prototypes.  */
  74. #  define __MALLOC_PMT(args) ()
  75. #  ifndef __const
  76. #   define __const
  77. #  endif
  78. # endif /* ANSI C or C++.  */
  79. #endif /* GCC.  */
  80. #ifndef NULL
  81. # ifdef __cplusplus
  82. #  define NULL 0
  83. # else
  84. #  define NULL ((__malloc_ptr_t) 0)
  85. # endif
  86. #endif
  87. #ifdef __cplusplus
  88. extern "C" {
  89. #endif
  90. /* Allocate SIZE bytes of memory.  */
  91. extern __malloc_ptr_t malloc __MALLOC_P ((size_t __size)) __attribute_malloc__;
  92. /* Allocate NMEMB elements of SIZE bytes each, all initialized to 0.  */
  93. extern __malloc_ptr_t calloc __MALLOC_P ((size_t __nmemb, size_t __size))
  94.        __attribute_malloc__;
  95. /* Re-allocate the previously allocated block in __ptr, making the new
  96.    block SIZE bytes long.  */
  97. extern __malloc_ptr_t realloc __MALLOC_P ((__malloc_ptr_t __ptr,
  98.    size_t __size))
  99.        __attribute_malloc__;
  100. /* Free a block allocated by `malloc', `realloc' or `calloc'.  */
  101. extern void free __MALLOC_P ((__malloc_ptr_t __ptr));
  102. /* Free a block allocated by `calloc'. */
  103. extern void cfree __MALLOC_P ((__malloc_ptr_t __ptr));
  104. /* Allocate SIZE bytes allocated to ALIGNMENT bytes.  */
  105. extern __malloc_ptr_t memalign __MALLOC_P ((size_t __alignment, size_t __size));
  106. /* Allocate SIZE bytes on a page boundary.  */
  107. extern __malloc_ptr_t valloc __MALLOC_P ((size_t __size)) __attribute_malloc__;
  108. /* Equivalent to valloc(minimum-page-that-holds(n)), that is, round up
  109.    __size to nearest pagesize. */
  110. extern __malloc_ptr_t  pvalloc __MALLOC_P ((size_t __size))
  111.        __attribute_malloc__;
  112. /* Underlying allocation function; successive calls should return
  113.    contiguous pieces of memory.  */
  114. extern __malloc_ptr_t (*__morecore) __MALLOC_PMT ((ptrdiff_t __size));
  115. /* Default value of `__morecore'.  */
  116. extern __malloc_ptr_t __default_morecore __MALLOC_P ((ptrdiff_t __size))
  117.        __attribute_malloc__;
  118. /* SVID2/XPG mallinfo structure */
  119. struct mallinfo {
  120.   int arena;    /* non-mmapped space allocated from system */
  121.   int ordblks;  /* number of free chunks */
  122.   int smblks;   /* number of fastbin blocks */
  123.   int hblks;    /* number of mmapped regions */
  124.   int hblkhd;   /* space in mmapped regions */
  125.   int usmblks;  /* maximum total allocated space */
  126.   int fsmblks;  /* space available in freed fastbin blocks */
  127.   int uordblks; /* total allocated space */
  128.   int fordblks; /* total free space */
  129.   int keepcost; /* top-most, releasable (via malloc_trim) space */
  130. };
  131. /* Returns a copy of the updated current mallinfo. */
  132. extern struct mallinfo mallinfo __MALLOC_P ((void));
  133. /* SVID2/XPG mallopt options */
  134. #ifndef M_MXFAST
  135. # define M_MXFAST  1 /* maximum request size for "fastbins" */
  136. #endif
  137. #ifndef M_NLBLKS
  138. # define M_NLBLKS  2 /* UNUSED in this malloc */
  139. #endif
  140. #ifndef M_GRAIN
  141. # define M_GRAIN   3 /* UNUSED in this malloc */
  142. #endif
  143. #ifndef M_KEEP
  144. # define M_KEEP    4 /* UNUSED in this malloc */
  145. #endif
  146. /* mallopt options that actually do something */
  147. #define M_TRIM_THRESHOLD    -1
  148. #define M_TOP_PAD           -2
  149. #define M_MMAP_THRESHOLD    -3
  150. #define M_MMAP_MAX          -4
  151. #define M_CHECK_ACTION      -5
  152. /* General SVID/XPG interface to tunable parameters. */
  153. extern int mallopt __MALLOC_P ((int __param, int __val));
  154. /* Release all but __pad bytes of freed top-most memory back to the
  155.    system. Return 1 if successful, else 0. */
  156. extern int malloc_trim __MALLOC_P ((size_t __pad));
  157. /* Report the number of usable allocated bytes associated with allocated
  158.    chunk __ptr. */
  159. extern size_t malloc_usable_size __MALLOC_P ((__malloc_ptr_t __ptr));
  160. /* Prints brief summary statistics on stderr. */
  161. extern void malloc_stats __MALLOC_P ((void));
  162. /* Record the state of all malloc variables in an opaque data structure. */
  163. extern __malloc_ptr_t malloc_get_state __MALLOC_P ((void));
  164. /* Restore the state of all malloc variables from data obtained with
  165.    malloc_get_state(). */
  166. extern int malloc_set_state __MALLOC_P ((__malloc_ptr_t __ptr));
  167. /* Called once when malloc is initialized; redefining this variable in
  168.    the application provides the preferred way to set up the hook
  169.    pointers. */
  170. extern void (*__malloc_initialize_hook) __MALLOC_PMT ((void));
  171. /* Hooks for debugging and user-defined versions. */
  172. extern void (*__free_hook) __MALLOC_PMT ((__malloc_ptr_t __ptr,
  173. __const __malloc_ptr_t));
  174. extern __malloc_ptr_t (*__malloc_hook) __MALLOC_PMT ((size_t __size,
  175.     __const __malloc_ptr_t));
  176. extern __malloc_ptr_t (*__realloc_hook) __MALLOC_PMT ((__malloc_ptr_t __ptr,
  177.      size_t __size,
  178.      __const __malloc_ptr_t));
  179. extern __malloc_ptr_t (*__memalign_hook) __MALLOC_PMT ((size_t __alignment,
  180.       size_t __size,
  181.       __const __malloc_ptr_t));
  182. extern void (*__after_morecore_hook) __MALLOC_PMT ((void));
  183. /* Activate a standard set of debugging hooks. */
  184. extern void __malloc_check_init __MALLOC_P ((void));
  185. #ifdef __cplusplus
  186. } /* end of extern "C" */
  187. #endif
  188. #endif /* malloc.h */