Embedded systems memory management library. Implementations for malloc(), free(), and other useful memory management functions
216
stars
44
forks
source link
Add a build option that can be used to override the free list static declaration #86
Closed
phillipjohnston closed 2 years ago
Fixes #84
Example Output from a manual test case
Default, with a test case that tries to access the list in another file:
After
$ make OPTIONS=-Dfreelist-declared-static=false
, the application will link successfully and we can iterate over the free list.