Embedded SDK
Embedded SDK
|
this structure, filled by mem_stat More...
#include <mem_alloc.h>
Public Attributes | |
size_t | total_size |
total size of the heap (including allocator internal data) | |
size_t | free_size |
size_t | allocated_size |
nb bytes allocated in the heap (including headers) | |
uint32_t | nb_chunks |
total number of chunks | |
uint32_t | nb_allocated |
number of allocated chunks | |
this structure, filled by mem_stat
Definition at line 46 of file mem_alloc.h.
size_t mem_stat_t::allocated_size |
nb bytes allocated in the heap (including headers)
Definition at line 50 of file mem_alloc.h.
size_t mem_stat_t::free_size |
nb bytes free in the heap (be careful, it doesn't mean it can be allocated in a single chunk)
Definition at line 48 of file mem_alloc.h.
uint32_t mem_stat_t::nb_allocated |
number of allocated chunks
Definition at line 52 of file mem_alloc.h.
uint32_t mem_stat_t::nb_chunks |
total number of chunks
Definition at line 51 of file mem_alloc.h.
size_t mem_stat_t::total_size |
total size of the heap (including allocator internal data)
Definition at line 47 of file mem_alloc.h.