blob: b39f07dd390650396e73a9833b11c791fb5d3c64 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
This is a version (aka dlmalloc) of malloc/free/realloc written by Doug Lea
and released to the public domain. Use, modify, and redistribute this code
without permission or acknowledgement in any way you wish. Send questions,
comments, complaints, performance data, etc to dl@cs.oswego.edu
This is not the fastest, most space-conserving, most portable, or most
tunable malloc ever written. However it is among the fastest while also being
among the most space-conserving, portable and tunable. Consistent balance
across these factors results in a good general-purpose allocator for
malloc-intensive programs.
WWW: http://gee.cs.oswego.edu/dl/html/malloc.html
|