NameDateSize

..20-Dec-2016245

arena.cH A D08-Mar-20157.5 KiB

malloc.cH A D08-Mar-2015128.6 KiB

malloc.hH A D08-Mar-20156.4 KiB

README-mallocH A D08-Mar-2015532

thread-m.hH A D08-Mar-20152.6 KiB

README-malloc

1Readme for Octeon shared memory malloc
2
3This malloc is based on ptmalloc2, which is the malloc
4implementation of glibc.  Source code and more information
5on this can be found at http://www.malloc.de/en/index.html.
6Please see the individual files for licensing terms.
7
8The main change to the code modifies the way the malloc
9gets memory from the system.  Under Linux/Unix, malloc
10uses the brk or memmap sytem calls to request more memory.
11In this implementation, memory regions must be explicitly
12given to malloc by the application.
13