MicrOS
micros_heap_entry Struct Reference

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_entrynext
 Pointer to the next entry (0 if last) More...
 
struct micros_heap_entryprev
 Pointer to the previous entry (0 if first) More...
 

Detailed Description

Structure containing information about application heap and its entries.

Member Data Documentation

◆ free

uint8_t micros_heap_entry::free

Flag indicates if the entry represents some allocated object or not.

◆ next

struct micros_heap_entry* micros_heap_entry::next

Pointer to the next entry (0 if last)

◆ prev

struct micros_heap_entry* micros_heap_entry::prev

Pointer to the previous entry (0 if first)

◆ size

uint32_t micros_heap_entry::size

Size of the current entry.


The documentation for this struct was generated from the following file: