]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/contrib/octeon-sdk/cvmx-malloc/README-malloc
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / contrib / octeon-sdk / cvmx-malloc / README-malloc
1 Readme for Octeon shared memory malloc
2
3 This malloc is based on ptmalloc2, which is the malloc
4 implementation of glibc.  Source code and more information
5 on this can be found at http://www.malloc.de/en/index.html.
6 Please see the individual files for licensing terms.
7
8 The main change to the code modifies the way the malloc
9 gets memory from the system.  Under Linux/Unix, malloc
10 uses the brk or memmap sytem calls to request more memory.
11 In this implementation, memory regions must be explicitly
12 given to malloc by the application.