Kaa client C SDK
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Macros | Functions
mem.h File Reference
#include <stddef.h>

Go to the source code of this file.

Macros

#define __KAA_MALLOC(S)   pvPortMalloc(S)
 
#define __KAA_CALLOC(S, N)   pvPortZalloc((S)*(N))
 
#define __KAA_REALLOC(P, S)   pvPortRealloc(P, S)
 
#define __KAA_FREE(P)   vPortFree(P)
 

Functions

void * pvPortMalloc (size_t xSize)
 
void * pvPortZalloc (size_t xSize)
 
void * pvPortRealloc (void *pvPtr, size_t xSize)
 
void vPortFree (void *pvPtr)
 

Macro Definition Documentation

#define __KAA_CALLOC (   S,
 
)    pvPortZalloc((S)*(N))
#define __KAA_FREE (   P)    vPortFree(P)
#define __KAA_MALLOC (   S)    pvPortMalloc(S)
#define __KAA_REALLOC (   P,
 
)    pvPortRealloc(P, S)

Function Documentation

void* pvPortMalloc ( size_t  xSize)
void* pvPortRealloc ( void *  pvPtr,
size_t  xSize 
)
void* pvPortZalloc ( size_t  xSize)
void vPortFree ( void *  pvPtr)