summaryrefslogtreecommitdiffstats
path: root/libc/stdlib/malloc/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Remove TOPDIRPeter S. Mazinger2005-11-211-3/+1
|
* Replace all Makefiles for new build infrastucturePeter S. Mazinger2005-10-291-50/+8
|
* Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵Peter S. Mazinger2005-10-121-8/+7
| | | | objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much.
* merge parallel build supportMike Frysinger2005-01-251-4/+4
|
* Rework malloc. The new default implementation is based on dlmalloc from DougEric Andersen2003-12-301-2/+1
| | | | | | | 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
* Peter Kjellerstedt writes:Eric Andersen2003-10-181-1/+1
| | | | | | | rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM).
* Add dependencies on header files.Miles Bader2003-09-191-2/+5
|
* Improve malloc debugging support.Miles Bader2002-11-211-2/+12
|
* (CSRC): Make contents source files, not object files.Miles Bader2002-08-191-2/+2
|
* (CSRC): Add `memalign.c'.Miles Bader2002-08-191-2/+2
|
* Per suggestion from Miles Bader, move calloc.c to libc/stdlib.Eric Andersen2002-08-071-1/+2
| | | | | | Also, Manuel notices that I forgot to check for when nmemb=0, which would result in a segfault, so fix that case as well. -Erik
* Unify calloc (its the same thing regardless of the underlyingEric Andersen2002-08-061-2/+2
| | | | | | | | malloc implementation). Fix problem reported to bugtraq about problems with integer overflow that can occur during the computation of the memory region size by calloc (and similar functions) which could result in a subsequent buffer overflow. -Erik
* * Automatically try to unmap heap free-areas when they get very big.Miles Bader2002-07-231-1/+1
| | | | | | | | * 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.
* Miles Bader implemented a new mmap based malloc which is muchEric Andersen2002-07-181-16/+8
| | | | | | | 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!
* We don't need the debug versionsEric Andersen2002-07-161-2/+2
|
* Update my email address. I am no longer andersen@lineo.comEric Andersen2001-12-191-0/+1
|
* Ok, this should finish off my massive ro-organization. The sourceEric Andersen2001-05-121-2/+1
| | | | | | | | | tree is less messy now (which helps), all libraries are placed into uClibc/lib when compiling, all libraries now use a consistant mechanism for being built, all libraries use a consistant naming scheme where the lib name includes the uClibc version number, which makes ldconfig happy and willing to work with us. -Erik
* A patch from Matthias Kilian <kili@outback.escape.de> to fix -DDEBUG_MALLOCEric Andersen2001-05-111-1/+1
| | | | | so that it works for realloc too. -Erik
* Update makefile to match the new malloc codeEric Andersen2001-01-121-6/+8
|
* A large update from Manuel Novoa III <mnovoa3@bellsouth.net>.Eric Andersen2001-01-111-2/+2
|
* Fix doc blunder.Eric Andersen2000-11-041-4/+4
|
* Make spelling of uClibc be consistant.Eric Andersen2000-11-041-1/+1
|
* Strip all object files of all non global symbols and .note andEric Andersen2000-10-201-1/+4
| | | | | .comment, saving a lot of space in the resultant binaries... -Erik
* Screwed up non-mmu support. #define was backwards.Eric Andersen2000-10-121-1/+1
| | | | -Erik
* Finish reorganizing things. At least I think I've finished.Eric Andersen2000-10-111-1/+1
|
* Bug ugly formatting updateEric Andersen2000-10-091-4/+13
|
* New malloc routines.Eric Andersen2000-10-081-8/+7
|
* Fix all the makefiles. Clean up some warnings, cleanup some headers.Eric Andersen2000-10-041-8/+24
| | | | -Erik
* Sanity fix.Eric Andersen2000-10-041-7/+5
|
* Many bugfixes, header cleanups, etc. Added abort and glob.Eric Andersen2000-07-051-4/+1
| | | | | It is getting closer... -Erik
* Fix up the makefiles. malloc-simple/Makefile forgot to include realloc.Eric Andersen2000-06-291-1/+1
| | | | | test/Makefile used a hard coded absolute path (bad, bad, bad). -Erik
* Finished porting stuff to x86 and supporting the Linux 2.2 kernels.Erik Andersen2000-05-151-1/+1
| | | | | It now compiles.... -Erik
* Some makefile updates to make it behave a bit better/consistently.Erik Andersen2000-05-141-7/+3
| | | | -Erik
* Patch from "D. Jeff Dionne / VE3DJF" <jeff@rt-control.com>0_9_1aErik Andersen2000-05-141-4/+4
| | | | | to allow uC-libc to compile under x86. -Erik
* Initial revision0_9_1Erik Andersen2000-05-141-0/+33