ILE C/C++ Run-Time Library Functions

Dynamic Memory Management


Function Header File Page Description
calloc() stdlib.h "calloc() -- Reserve and Initialize Storage" Reserves storage space for an array and initializes the values of all elements to 0.
_C_TS_malloc_debug mallocinfo.h "_C_TS_malloc_debug() -- Determine amount of teraspace memory used (with optional dumps and verification)" Returns the same information as _C_TS_malloc_info, plus produces a spool file of detailed information about the memory structure used by malloc functions when compiled with teraspace.
_C_TS_malloc_info mallocinfo.h "_C_TS_malloc_info() -- Determine amount of teraspace memory used" Returns the current memory usage information.
free() stdlib.h "free() -- Release Storage Blocks" Frees storage blocks.
malloc() stdlib.h "malloc() -- Reserve Storage Block" Reserves storage blocks.
realloc() stdlib.h "realloc() -- Change Reserved Storage Block Size" Changes storage size allocated for an object.


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]