about summary refs log tree commit diff
path: root/src/malloc
Commit message (Expand)AuthorAgeFilesLines
* page-align initial brk value used by malloc in shared libcRich Felker2012-12-071-1/+5
* fix invalid read in aligned_allocRich Felker2012-12-061-2/+3
* workaround gcc got-register-reload performance problems in mallocRich Felker2012-09-141-4/+8
* implement "low hanging fruit" from C11Rich Felker2012-08-253-47/+55
* ditch the priority inheritance locks; use malloc's version of lockRich Felker2012-04-241-4/+4
* fix issue with excessive mremap syscalls on reallocRich Felker2011-11-161-4/+2
* use new a_crash() asm to optimize double-free handler.Rich Felker2011-08-231-2/+2
* simplify and improve double-free checkRich Felker2011-08-151-2/+2
* posix_memalign should fail if size is not a multiple of sizeof(void *)Rich Felker2011-06-291-1/+1
* eliminate OOB array hacks in mallocRich Felker2011-06-261-46/+45
* malloc: cast size down to int in bin_index functionsRich Felker2011-06-121-2/+2
* use volatile pointers for intentional-crash code.Rich Felker2011-06-061-2/+2
* namespace fixes for sys/mman.hRich Felker2011-04-201-0/+1
* fix rare but nasty under-allocation bug in malloc with large requestsRich Felker2011-04-041-1/+1
* avoid over-allocation of brk on first mallocRich Felker2011-04-011-4/+4
* rename __simple_malloc.c to lite_malloc.c - yes this affects behavior!Rich Felker2011-03-301-0/+0
* very cheap double-free checks in mallocRich Felker2011-03-231-0/+4
* global cleanup to use the new syscall interfaceRich Felker2011-03-201-1/+1
* make malloc(0) return unique pointers rather than NULLRich Felker2011-02-202-6/+10
* fix simple_malloc malloc(0) behavior not to return non-unique pointersRich Felker2011-02-201-0/+1
* fix simple_malloc size restrictionsRich Felker2011-02-201-5/+6
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-127-0/+671