API Guides > ConceptRT 3.x

Detailed Description

Functions

Pointer Concept_Malloc (Int32 size)
 Memory allocation. More...
 
Pointer Concept_Realloc (Pointer buffer, Int32 currentSize, Int32 targetSize)
 Memory re allocation. More...
 
void Concept_Free (Pointer &buffer)
 Memory free. More...
 

Function Documentation

void Concept_Free ( Pointer buffer)

Memory free.

Parameters
bufferThe memory buffer.
Warning
Non-Deterministic: Deallocation on the heap is non-deterministic. Determinism when using ConceptRT library can be ensure by using Context Time Critical mechanisms.
Pointer Concept_Malloc ( Int32  size)

Memory allocation.

Parameters
sizeThe size.
Returns
The memory buffer allocated.
Warning
Non-Deterministic: Allocation on the heap is non-deterministic. Determinism when using ConceptRT library can be ensure by using Context Time Critical mechanisms.
Pointer Concept_Realloc ( Pointer  buffer,
Int32  currentSize,
Int32  targetSize 
)

Memory re allocation.

Parameters
bufferThe current memory buffer.
currentSizeThe current memory buffer size.
targetSizeThe targeted size.
Returns
The memory bloc re allocated.
Warning
Non-Deterministic: Allocation on the heap is non-deterministic. Determinism when using ConceptRT library can be ensure by using Context Time Critical mechanisms.