blob: c6483d2af95f8f7f7ceb15496b1a8ff8cdd78569 [file] [log] [blame]
Wyatt Heplerf9fb90f2020-09-30 18:59:33 -07001.. _module-pw_malloc_freelist:
Chenghan Zhoud4f44d22020-06-18 15:42:06 -04002
3------------------
4pw_malloc_freelist
5------------------
6
7``pw_malloc_freelist`` implements the ``pw_malloc`` facade using a freelist
8heap.
9
10``pw_malloc_freelist`` initializes a global ``FreeListHeapBuffer`` object to
11organize heap usage. Implementation details are in the ``pw_allocator`` module.
12
13``pw_malloc_freelist`` provides wrapper functions for ``malloc``, ``free``,
14``realloc`` and ``calloc`` that uses the freelist implementation of heap in
15``pw_allocator``. In the GN build file, ``pw_malloc_freelist`` provides linker
16options needed in ``public_configs``, which will be forwarded to the facade. In
17the case of freelist, we specify the wrapper functions ``malloc, free, realloc,
18calloc, _malloc_r, _free_r, _realloc_r, _calloc_r`` to replace the original libc
19functions at linker time.