MySQL 5.6.14 Source Code Document
|
Go to the source code of this file.
Classes | |
struct | mem_area_t |
Macros | |
#define | MEM_AREA_EXTRA_SIZE |
Functions | |
UNIV_INTERN mem_pool_t * | mem_pool_create (ulint size) |
UNIV_INTERN void | mem_pool_free (mem_pool_t *pool) |
UNIV_INTERN void * | mem_area_alloc (ulint *psize, mem_pool_t *pool) |
UNIV_INTERN void | mem_area_free (void *ptr, mem_pool_t *pool) |
UNIV_INTERN ulint | mem_pool_get_reserved (mem_pool_t *pool) |
UNIV_INTERN ibool | mem_pool_validate (mem_pool_t *pool) |
UNIV_INTERN void | mem_pool_print_info (FILE *outfile, mem_pool_t *pool) |
Variables | |
mem_pool_t * | mem_comm_pool |
#define MEM_AREA_EXTRA_SIZE |
Each memory area takes this many extra bytes for control information
Definition at line 50 of file mem0pool.h.
UNIV_INTERN void* mem_area_alloc | ( | ulint * | psize, |
mem_pool_t * | pool | ||
) |
Allocates memory from a pool. NOTE: This low-level function should only be used in mem0mem.*!
Allocates memory from a pool. NOTE: This low-level function should only be used in mem0mem.*!
psize | in: requested size in bytes; for optimum space usage, the size should be a power of 2 minus MEM_AREA_EXTRA_SIZE; out: allocated size in bytes (greater than or equal to the requested size) |
pool | in: memory pool |
Definition at line 364 of file mem0pool.cc.
UNIV_INTERN void mem_area_free | ( | void * | ptr, |
mem_pool_t * | pool | ||
) |
Frees memory to a pool. in: memory pool
Frees memory to a pool.
ptr | in, own: pointer to allocated memory buffer |
pool | in: memory pool |
Definition at line 506 of file mem0pool.cc.
UNIV_INTERN mem_pool_t* mem_pool_create | ( | ulint | size | ) |
Creates a memory pool.
Creates a memory pool.
size | in: pool size in bytes |
Definition at line 220 of file mem0pool.cc.
UNIV_INTERN void mem_pool_free | ( | mem_pool_t * | pool | ) |
Frees a memory pool. in, own: memory pool
Frees a memory pool.
pool | in, own: memory pool |
Definition at line 279 of file mem0pool.cc.
UNIV_INTERN ulint mem_pool_get_reserved | ( | mem_pool_t * | pool | ) |
Returns the amount of reserved memory.
Returns the amount of reserved memory.
pool | in: memory pool |
Definition at line 714 of file mem0pool.cc.
UNIV_INTERN void mem_pool_print_info | ( | FILE * | outfile, |
mem_pool_t * | pool | ||
) |
Prints info of a memory pool. in: memory pool
Prints info of a memory pool.
outfile | in: output file to write to |
pool | in: memory pool |
Definition at line 680 of file mem0pool.cc.
UNIV_INTERN ibool mem_pool_validate | ( | mem_pool_t * | pool | ) |
Validates a memory pool.
Validates a memory pool.
pool | in: memory pool |
Definition at line 636 of file mem0pool.cc.
mem_pool_t* mem_comm_pool |
The common memory pool
Definition at line 116 of file mem0pool.cc.