summaryrefslogtreecommitdiffstats
path: root/libc/stdlib/malloc-standard/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Merge from trunk."Steven J. Hill"2005-12-021-51/+8
|
* Remove '__libc_fatal' function and usage of it. Remove and disable 'freeres' ↵"Steven J. Hill"2005-11-161-3/+0
| | | | code having to do with internal library memory usage and GDB. uClibc homey don't play that.
* Fix up build system for NPTL. I admit it is much cleaner now, but I lost my ↵"Steven J. Hill"2005-10-041-2/+8
| | | | entire Saturday fixing this $!#$!#@$T! up.
* Rename option PTHREADS_NATIVE to be UCLIBC_HAS_THREADS_NATIVE instead. What ↵"Steven J. Hill"2005-09-241-1/+1
| | | | a stupid name to start with. What idiot thought of that?
* Compile cleanups for NPTL support."Steven J. Hill"2005-08-091-4/+3
|
* Disable compilation of 'thread-freeres.c' until we sort out the start"Steven J. Hill"2005-07-311-4/+4
| | | | and stop functions lists for threads.
* Add support for '__libc_thread_freeres' to free resources stored in"Steven J. Hill"2005-06-031-0/+4
| | | | thread-local variables when a thread exits.
* merge parallel build supportMike Frysinger2005-01-251-5/+4
|
* Rework malloc. The new default implementation is based on dlmalloc from DougEric Andersen2003-12-301-0/+51
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