µOS++ IIIe Reference 7.0.0
The third edition of µOS++, a POSIX inspired open source framework, written in C++
Loading...
Searching...
No Matches
malloc.cpp File Reference

Go to the source code of this file.

Functions

Standard functions
void * calloc (size_t nelem, size_t elbytes)
 Allocate an array of memory blocks (initialised to zero).
 
void free (void *ptr)
 Free the allocated memory block.
 
void * malloc (size_t bytes)
 Allocate a memory block (non-initialised).
 
void * realloc (void *ptr, size_t bytes)
 Reallocate the memory block (non-initialised).