Memory heap fragmentation
Posted: Thu Aug 02, 2018 9:53 pm
Hello!
FreeRTOS has several approaches to manage heap memory https://www.freertos.org/a00111.html
I've found in that pvPortMalloc is just an alias for malloc from newlib:
So, the question is - does the current solution support memory defragmentation, like coalescing free contiguous blocks?
FreeRTOS has several approaches to manage heap memory https://www.freertos.org/a00111.html
I've found in
Code: Select all
freertos/portable.h
Code: Select all
#define pvPortMalloc malloc