summaryrefslogtreecommitdiffstats
path: root/libc/stdlib/malloc-standard/free.c
Commit message (Collapse)AuthorAgeFilesLines
* trim Experimentally off and uncommented hiddenBernhard Reutner-Fischer2009-09-181-1/+0
| | | | | | | | sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* Last portion of libc_hidden_proto removal.Denis Vlasenko2008-11-201-1/+1
| | | | | Appears to build fine (several .configs tried)
* Major cleanup of internal mutex locking. Be more consistant in how we doEric Andersen2006-12-071-2/+2
| | | | | | | things, and avoid potential deadlocks caused when a thread holding a uClibc internal lock get canceled and terminates without releasing the lock. This change also provides a single place, bits/uClibc_mutex.h, for thread libraries to modify to change all instances of internal locking.
* just drop all of the debug codeMike Frysinger2006-02-091-2/+1
|
* Bernhard Fischer says: get rid of local ret variableMike Frysinger2006-02-081-3/+1
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-141-2/+1
| | | | missing headers, other jump relocs removed
* __malloc_consolidate is only libc internal, enable use of __sbrkPeter S. Mazinger2005-12-131-1/+1
|
* More hiding, 300 leftPeter S. Mazinger2005-12-041-0/+2
|
* Avoid compiler warnings.Peter Kjellerstedt2005-01-191-31/+31
|
* Some requested additional malloc entry pointsEric Andersen2004-11-081-0/+31
|
* Rework malloc. The new default implementation is based on dlmalloc from DougEric Andersen2003-12-301-0/+382
Lea. It is about 2x faster than the old malloc-930716, and behave itself much better -- it will properly release memory back to the system, and it uses a combination of brk() for small allocations and mmap() for larger allocations. -Erik