tlsfv2020-03-29
- Updated
Two-Level Segregated Fit memory allocator implementation. O(1) cost for malloc, free, realloc and memalign, with extremely low overhead per allocation.
- Project website: https://github.com/mattconte/tlsf
#Usage
tlsf provides a static library and a header:
find_path(TLSF_INCLUDE_DIR tlsf.h)
find_library(TLSF_LIBRARY tlsf)
target_include_directories(main PRIVATE ${TLSF_INCLUDE_DIR})
target_link_libraries(main PRIVATE ${TLSF_LIBRARY})#Supported Platforms
All platforms supported.
#Features
No features defined.
#Dependencies
No dependencies.
#Used By
#Host Tool For
No ports use this.
#Contributors
Glenn Fiedler