Two-Level Segregated Fit memory allocator implementation. O(1) cost for malloc, free, realloc and memalign, with extremely low overhead per allocation.
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})
v2020-03-29#0
All
BSD-3-Clause
Manifest