Copyright (C) 1992 Free Software Foundation, Inc.
Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided also that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.
Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions.
This is a heavily modified version of GNU malloc
. It uses
mmap
as the basic mechanism for obtaining memory from the
system, rather than sbrk
. This gives it several advantages over the
more traditional malloc:
mmap
, with the mmalloc
functions
using a specific heap on a call by call basis.
mmap
, it is easy to create heaps which are intended to
be persistent and exist as a filesystem object after the creating
process has gone away.