|
idfxx 1.0.0
Modern C++23 components for ESP-IDF
|
Information about a single heap block, passed to heap walk callbacks. More...
Public Attributes | |
| void * | ptr |
| Pointer to the block data. | |
| size_t | size |
| Size of the block in bytes. | |
| bool | used |
| True if allocated, false if free. | |
Information about a single heap block, passed to heap walk callbacks.
Definition at line 423 of file memory.hpp.
| void* idfxx::heap_block::ptr |
Pointer to the block data.
Definition at line 424 of file memory.hpp.
Referenced by idfxx::heap_walk(), and idfxx::heap_walk_all().
| size_t idfxx::heap_block::size |
Size of the block in bytes.
Definition at line 425 of file memory.hpp.
| bool idfxx::heap_block::used |
True if allocated, false if free.
Definition at line 426 of file memory.hpp.