musl/src/malloc/mallocng/README.mallocng
Rich Felker 785752a595 add glue code for mallocng merge
this includes both an implementation of reclaimed-gap donation from
ldso and a version of mallocng's glue.h with namespace-safe linkage to
underlying syscalls, integration with AT_RANDOM initialization, and
internal locking that's optimized out when the process is
single-threaded.
2020-06-29 17:42:53 -04:00

13 lines
346 B
Text

This directory is a skeleton for upcoming merge of musl's new malloc
implementation, mallocng. To use it, drop in copies of or symlinks to
the following files from mallocng:
- meta.h
- malloc.c
- realloc.c
- free.c
- aligned_alloc.c
- malloc_usable_size.c
and build with make variable MALLOC_DIR=mallocng in config.mak or on
make command line.