Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Finally fix the MALLOC=y and MALLOC_SIMPLE=y breakage from svn 23660. (I ↵ | Rob Landley | 2008-10-28 | 1 | -4/+4 |
| | | | | found it, this is Bernhard's patch to fix it. Tested and it Works For Me (tm)). | ||||
* | Fix bug 4994 hangs on read(). I have tested the patch extensibly on ARM/LT.old. | Khem Raj | 2008-10-11 | 1 | -2/+2 |
| | | | | | Thank you Chase Douglas for reporting it and for the patch. | ||||
* | - trim any trailing whitespace | Bernhard Reutner-Fischer | 2008-07-23 | 1 | -1/+1 |
| | |||||
* | fix up malloc debug building | Mike Frysinger | 2007-04-13 | 1 | -1/+1 |
| | |||||
* | Doc fix. | Miles Bader | 2002-08-30 | 1 | -1/+1 |
| | |||||
* | (__heap_free): Tighten up the inner loop, and make the code more readable. | Miles Bader | 2002-08-30 | 1 | -29/+24 |
| | |||||
* | Size tweaks. | Miles Bader | 2002-07-25 | 1 | -7/+7 |
| | |||||
* | Redo the locking, so that it may actually work. Now locking is done at | Miles Bader | 2002-07-25 | 1 | -5/+1 |
| | | | | | | | | | the malloc/free level, not within the heap abstraction, and there's a separate lock to control sbrk access. Also, get rid of the separate `unmap_free_area' function in free.c, and just put the code in the `free' function directly, which saves a bunch of space (even compared to using an inline function) for some reason. | ||||
* | Factor out some common code sequences into inline functions. | Miles Bader | 2002-07-24 | 1 | -47/+14 |
| | |||||
* | * Automatically try to unmap heap free-areas when they get very big. | Miles Bader | 2002-07-23 | 1 | -1/+5 |
| | | | | | | | | * 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. | ||||
* | Rename mutex stuff to use heap-specific names. | Miles Bader | 2002-07-19 | 1 | -3/+3 |
| | | | | Doc fix. | ||||
* | Miles Bader implemented a new mmap based malloc which is much | Eric Andersen | 2002-07-18 | 1 | -0/+127 |
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! |