ChibiOS/RT
2.5.1
memory_heap Struct Reference

Detailed Description

Structure describing a memory heap.

Definition at line 64 of file chheap.h.

#include <chheap.h>

Collaboration diagram for memory_heap:

Data Fields

memgetfunc_t h_provider
 Memory blocks provider for this heap.
union heap_header h_free
 Free blocks list header.
Mutex h_mtx
 Heap access mutex.

Field Documentation

Memory blocks provider for this heap.

Definition at line 65 of file chheap.h.

Referenced by _heap_init(), chHeapAlloc(), and chHeapInit().

Free blocks list header.

Definition at line 67 of file chheap.h.

Referenced by _heap_init(), chHeapAlloc(), chHeapFree(), chHeapInit(), and chHeapStatus().

Heap access mutex.

Definition at line 69 of file chheap.h.

Referenced by _heap_init(), and chHeapInit().