summaryrefslogtreecommitdiff
path: root/src/malloc
AgeCommit message (Expand)AuthorLines
2013-07-04move core memalign code from aligned_alloc to __memalignRich Felker-49/+55
2013-07-04move alignment check from aligned_alloc to posix_memalignRich Felker-1/+2
2012-12-07page-align initial brk value used by malloc in shared libcRich Felker-1/+5
2012-12-06fix invalid read in aligned_allocRich Felker-2/+3
2012-09-14workaround gcc got-register-reload performance problems in mallocRich Felker-4/+8
2012-08-25implement "low hanging fruit" from C11Rich Felker-47/+55
2012-04-24ditch the priority inheritance locks; use malloc's version of lockRich Felker-4/+4
2011-11-16fix issue with excessive mremap syscalls on reallocRich Felker-4/+2
2011-08-23use new a_crash() asm to optimize double-free handler.Rich Felker-2/+2
2011-08-15simplify and improve double-free checkRich Felker-2/+2
2011-06-29posix_memalign should fail if size is not a multiple of sizeof(void *)Rich Felker-1/+1
2011-06-26eliminate OOB array hacks in mallocRich Felker-46/+45
2011-06-12malloc: cast size down to int in bin_index functionsRich Felker-2/+2
2011-06-06use volatile pointers for intentional-crash code.Rich Felker-2/+2
2011-04-20namespace fixes for sys/mman.hRich Felker-0/+1
2011-04-04fix rare but nasty under-allocation bug in malloc with large requestsRich Felker-1/+1
2011-04-01avoid over-allocation of brk on first mallocRich Felker-4/+4
2011-03-30rename __simple_malloc.c to lite_malloc.c - yes this affects behavior!Rich Felker-0/+0
2011-03-23very cheap double-free checks in mallocRich Felker-0/+4
2011-03-20global cleanup to use the new syscall interfaceRich Felker-1/+1
2011-02-20make malloc(0) return unique pointers rather than NULLRich Felker-6/+10
2011-02-20fix simple_malloc malloc(0) behavior not to return non-unique pointersRich Felker-0/+1
2011-02-20fix simple_malloc size restrictionsRich Felker-5/+6
2011-02-12initial check-in, version 0.5.0v0.5.0Rich Felker-0/+671