LexLeo 0.0.0-dev+f8e5087-dirty
Technical documentation
Loading...
Searching...
No Matches
osal_mem_ops.c File Reference
Include dependency graph for osal_mem_ops.c:

Go to the source code of this file.

Functions

static void * libc_malloc (size_t s)
 
static void libc_free (void *p)
 
static void * libc_calloc (size_t n, size_t s)
 
static void * libc_realloc (void *p, size_t s)
 
static char * libc_strdup (const char *s)
 
const osal_mem_ops_tosal_mem_default_ops (void)
 

Function Documentation

◆ libc_calloc()

static void * libc_calloc ( size_t  n,
size_t  s 
)
static

Definition at line 10 of file osal_mem_ops.c.

◆ libc_free()

static void libc_free ( void *  p)
static

Definition at line 9 of file osal_mem_ops.c.

◆ libc_malloc()

static void * libc_malloc ( size_t  s)
static

Definition at line 8 of file osal_mem_ops.c.

◆ libc_realloc()

static void * libc_realloc ( void *  p,
size_t  s 
)
static

Definition at line 11 of file osal_mem_ops.c.

◆ libc_strdup()

static char * libc_strdup ( const char *  s)
static

Definition at line 13 of file osal_mem_ops.c.

◆ osal_mem_default_ops()

const osal_mem_ops_t * osal_mem_default_ops ( void  )

Definition at line 23 of file osal_mem_ops.c.