Name Date Size #Lines LOC

..22-Aug-2023-

README-mallocH A D22-Aug-2023532 1310

arena.cH A D22-Aug-20237.5 KiB294165

malloc.cH A D22-Aug-2023128.6 KiB4,1071,685

malloc.hH A D22-Aug-20236.4 KiB214111

thread-m.hH A D22-Aug-20232.6 KiB7426

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