summaryrefslogtreecommitdiffstats
path: root/libc/stdlib/malloc/realloc.c
Commit message (Collapse)AuthorAgeFilesLines
* Misc small cleanups.Miles Bader2002-07-241-2/+2
|
* * Automatically try to unmap heap free-areas when they get very big.Miles Bader2002-07-231-15/+2
| | | | | | | | * Instead of using mmap/munmap directly for large allocations, just use the heap for everything (this is reasonable now that heap memory can be unmapped). * Use sbrk instead of mmap/munmap on systems with an MMU.
* Doc fix.Miles Bader2002-07-191-1/+1
|
* Miles Bader implemented a new mmap based malloc which is muchEric Andersen2002-07-181-0/+76
smarter than the old "malloc-simple", and actually works, unlike the old "malloc". So kill the old "malloc-simple" and the old "malloc" and replace them with Miles' new malloc implementation. Update Config files to match. Thanks Miles!