diff options
author | Juli Mallett <jmallett@FreeBSD.org> | 2012-03-11 04:14:00 +0000 |
---|---|---|
committer | Juli Mallett <jmallett@FreeBSD.org> | 2012-03-11 04:14:00 +0000 |
commit | f8b73ad2e16934621a86fd1fd67b46aa21521d0b (patch) | |
tree | cd40bd62c08fa360ceced004ce74decd1b26ca3c /cvmx-malloc/README-malloc | |
parent | 7a1e830cbcd5d33aa7fcdd8732e6ea26510508fd (diff) | |
download | src-f8b73ad2e16934621a86fd1fd67b46aa21521d0b.tar.gz src-f8b73ad2e16934621a86fd1fd67b46aa21521d0b.zip |
Import Cavium Octeon SDK 2.3.0 Simple Executive from cnusers.org.vendor/octeon-sdk/2.3.0vendor/octeon-sdk
Notes
Notes:
svn path=/vendor-sys/octeon-sdk/dist/; revision=232809
svn path=/vendor-sys/octeon-sdk/2.3.0/; revision=232810; tag=vendor/octeon-sdk/2.3.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. |