Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | trim Experimentally off and uncommented hidden | Bernhard Reutner-Fischer | 2009-09-18 | 1 | -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 Vlasenko | 2008-11-20 | 1 | -1/+1 |
| | | | | | Appears to build fine (several .configs tried) | ||||
* | Major cleanup of internal mutex locking. Be more consistant in how we do | Eric Andersen | 2006-12-07 | 1 | -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 code | Mike Frysinger | 2006-02-09 | 1 | -2/+1 |
| | |||||
* | Bernhard Fischer says: get rid of local ret variable | Mike Frysinger | 2006-02-08 | 1 | -3/+1 |
| | |||||
* | hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵ | Peter S. Mazinger | 2006-01-14 | 1 | -2/+1 |
| | | | | missing headers, other jump relocs removed | ||||
* | __malloc_consolidate is only libc internal, enable use of __sbrk | Peter S. Mazinger | 2005-12-13 | 1 | -1/+1 |
| | |||||
* | More hiding, 300 left | Peter S. Mazinger | 2005-12-04 | 1 | -0/+2 |
| | |||||
* | Avoid compiler warnings. | Peter Kjellerstedt | 2005-01-19 | 1 | -31/+31 |
| | |||||
* | Some requested additional malloc entry points | Eric Andersen | 2004-11-08 | 1 | -0/+31 |
| | |||||
* | Rework malloc. The new default implementation is based on dlmalloc from Doug | Eric Andersen | 2003-12-30 | 1 | -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 |