![]() |
ChibiOS/RT Architecture - Reference Manual - Guides |
Memory Pools code. More...
#include "ch.h"Go to the source code of this file.
Functions | |
| void | chPoolInit (MemoryPool *mp, size_t size, memgetfunc_t provider) |
| Initializes an empty memory pool. | |
| void * | chPoolAllocI (MemoryPool *mp) |
| Allocates an object from a memory pool. | |
| void * | chPoolAlloc (MemoryPool *mp) |
| Allocates an object from a memory pool. | |
| void | chPoolFreeI (MemoryPool *mp, void *objp) |
| Releases (or adds) an object into (to) a memory pool. | |
| void | chPoolFree (MemoryPool *mp, void *objp) |
| Releases (or adds) an object into (to) a memory pool. | |
Memory Pools code.
Definition in file chmempools.c.
1.7.1