|
TinyTelnetServer
|
ESP32 Memory allocateator which forces the allocation with the defined attributes (default MALLOC_CAP_8BIT | MALLOC_CAP_INTERNAL) More...
#include <Allocator.h>
Public Member Functions | |
| virtual void * | allocate (size_t size) |
| Allocates memory. | |
| template<class T > | |
| T * | create () |
| template<class T > | |
| T * | createArray (int len) |
| virtual void | free (void *memory) |
| frees memory | |
| template<class T > | |
| void | remove (T *obj) |
| deletes an object | |
| template<class T > | |
| void | removeArray (T *obj, int len) |
Protected Member Functions | |
| virtual void | stop () |
Protected Attributes | |
| int | caps = 0 |
ESP32 Memory allocateator which forces the allocation with the defined attributes (default MALLOC_CAP_8BIT | MALLOC_CAP_INTERNAL)