mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
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.
13 lines
346 B
Text
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.
|