Next: handlers, Previous: allocators, Up: Top [Contents][Index]
Pointer to the standard memory allocator instance. This allocator uses the standard functions
malloc()
, realloc()
, calloc()
and free()
.
Allocate memory in a way similar to the standard malloc()
, using the standard allocator. If
an error occurs: an exception is raised by jumping to the location L. This function never
returns NULL
.
Reallocate memory in a way similar to the standard realloc()
, using the standard allocator.
If an error occurs: an exception is raised by jumping to the location L. This function never
returns NULL
. Only blocks of memory allocated using the standard allocator can be reallocated
using this function.
Allocate memory in a way similar to the standard calloc()
, using the standard allocator. If
an error occurs: an exception is raised by jumping to the location L. This function never
returns NULL
.
Release memory in a way similar to the standard free()
, using the standard allocator.
Next: handlers, Previous: allocators, Up: Top [Contents][Index]
This document describes version 0.2.2-devel.3 of CCMemory.