heap_allocator
heap_allocator copied to clipboard
Upgrade the implementation of dynamic memory allocator:
- Allocate memory with alignment in case of the crash in some embedded system;
- Free memory without coalesce the next node(or previous node) when the current node is the last one(or first one);
- Add declaration of function get_best_fit in case of crash in 64bits platform;
- Fix the dump of pointer in main.c;