MicrOS
|
Structure containing information about application heap and its entries. More...
#include <micros_heap.h>
Public Attributes | |
uint32_t | size |
Size of the current entry. More... | |
uint8_t | free |
Flag indicates if the entry represents some allocated object or not. More... | |
struct micros_heap_entry * | next |
Pointer to the next entry (0 if last) More... | |
struct micros_heap_entry * | prev |
Pointer to the previous entry (0 if first) More... | |
Structure containing information about application heap and its entries.
uint8_t micros_heap_entry::free |
Flag indicates if the entry represents some allocated object or not.
struct micros_heap_entry* micros_heap_entry::next |
Pointer to the next entry (0 if last)
struct micros_heap_entry* micros_heap_entry::prev |
Pointer to the previous entry (0 if first)
uint32_t micros_heap_entry::size |
Size of the current entry.