diff options
author | Juli Mallett <jmallett@FreeBSD.org> | 2010-07-20 07:11:19 +0000 |
---|---|---|
committer | Juli Mallett <jmallett@FreeBSD.org> | 2010-07-20 07:11:19 +0000 |
commit | 1c305b501145f696d3597fb9b5b2091caaa6f67c (patch) | |
tree | 776ea14a76df76cd5ee4d9b63107c1e819c68914 /cvmx-malloc/README-malloc | |
download | src-1c305b501145f696d3597fb9b5b2091caaa6f67c.tar.gz src-1c305b501145f696d3597fb9b5b2091caaa6f67c.zip |
Initial import of Cavium Networks Octeon Simple Executive, SDK version 1.9.0.vendor/octeon-sdk/1.9.0
Notes
Notes:
svn path=/vendor-sys/octeon-sdk/dist/; revision=210284
svn path=/vendor-sys/octeon-sdk/1.9.0/; revision=210285; tag=vendor/octeon-sdk/1.9.0
Diffstat (limited to 'cvmx-malloc/README-malloc')
-rw-r--r-- | cvmx-malloc/README-malloc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cvmx-malloc/README-malloc b/cvmx-malloc/README-malloc new file mode 100644 index 000000000000..922a713410a9 --- /dev/null +++ b/cvmx-malloc/README-malloc @@ -0,0 +1,12 @@ +Readme for Octeon shared memory malloc + +This malloc is based on ptmalloc2, which is the malloc +implementation of glibc. Source code and more information +on this can be found at http://www.malloc.de/en/index.html. +Please see the individual files for licensing terms. + +The main change to the code modifies the way the malloc +gets memory from the system. Under Linux/Unix, malloc +uses the brk or memmap sytem calls to request more memory. +In this implementation, memory regions must be explicitly +given to malloc by the application. |