1. Home
  2. Browse
  3. tlsf

tlsf

v2020-03-29#0Latest

Two-Level Segregated Fit memory allocator implementation. O(1) cost for malloc, free, realloc and memalign, with extremely low overhead per allocation.

Install

Run the following Vcpkg command to install the port.

vcpkg install 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})

Dependencies

See source

Version

v2020-03-29#0

Publication

Supports

All

GitHub

mattconte/tlsf1.6K

Homepage

github.com/mattconte/tlsf

Subtree

ddd110b8a0

License

BSD-3-Clause

Definition

Manifest