Go to the source code of this file.
Functions | |
static void | meta_init (char **argv) |
void * | meta_malloc (size_t size) |
void | meta_free (void *mem) |
void * | meta_calloc (size_t nelem, size_t size) |
void | meta_cfree (void *mem) |
void * | meta_realloc (void *mem, size_t size) |
void * | meta_memalign (size_t align, size_t size) |
int | meta_posix_memalign (void **outptr, size_t align, size_t size) |
void * | meta_aligned_alloc (size_t align, size_t size) |
void * | meta_valloc (size_t size) |
void * | meta_pvalloc (size_t size) |
static void meta_init | ( | char ** | argv | ) | [static] |
Definition at line 22 of file memory-lock.C.
Definition at line 40 of file memory-lock.C.
References CmiOutOfMemory(), and mm_calloc.
Referenced by calloc(), and cpd_memory_single_pup().
void meta_cfree | ( | void * | mem | ) |
Definition at line 68 of file memory-lock.C.
References CmiOutOfMemory(), and mm_posix_memalign.
Referenced by cpd_memory_single_pup(), and posix_memalign().
Definition at line 76 of file memory-lock.C.
References CmiOutOfMemory(), and mm_aligned_alloc.
Referenced by aligned_alloc(), and cpd_memory_single_pup().
void* meta_valloc | ( | size_t | size | ) |
Definition at line 84 of file memory-lock.C.
References CmiOutOfMemory(), and mm_valloc.
Referenced by cpd_memory_single_pup(), and valloc().
void* meta_pvalloc | ( | size_t | size | ) |
Definition at line 92 of file memory-lock.C.
References CmiOutOfMemory(), and mm_pvalloc.
Referenced by cpd_memory_single_pup(), and pvalloc().