about summary refs log tree commit diff
path: root/src/malloc/malloc.c
Commit message (Expand)AuthorAgeFilesLines
* move oldmalloc to its own directory under src/mallocRich Felker2020-06-031-550/+0
* move __expand_heap into malloc.cRich Felker2020-06-031-0/+64
* fix unbounded heap expansion race in mallocRich Felker2020-06-021-152/+87
* restore lock-skipping for processes that return to single-threaded stateRich Felker2020-05-221-1/+4
* don't use libc.threads_minus_1 as relaxed atomic for skipping locksRich Felker2020-05-221-1/+1
* move declarations for malloc internals to malloc_impl.hRich Felker2018-09-121-2/+0
* reintroduce hardening against partially-replaced allocatorRich Felker2018-04-191-4/+9
* return chunks split off by memalign using __bin_chunk instead of freeRich Felker2018-04-191-6/+4
* move malloc implementation types and macros to an internal headerRich Felker2018-04-191-37/+1
* revert detection of partially-replaced allocatorRich Felker2018-04-191-11/+4
* allow interposition/replacement of allocator (malloc)Rich Felker2018-04-181-5/+17
* comment __malloc_donate overflow logicRich Felker2018-04-171-0/+3
* ldso, malloc: implement reclaim_gaps via __malloc_donateAlexander Monakov2018-04-171-18/+43
* malloc: fix an over-allocation bugAlexander Monakov2018-04-171-4/+4
* optimize malloc0Alexander Monakov2018-04-111-6/+23
* fix undefined behavior in freeAlexander Monakov2017-07-041-2/+3
* handle mremap failure in realloc of mmap-serviced allocationsRich Felker2017-06-151-1/+2
* use lookup table for malloc bin index instead of float conversionSzabolcs Nagy2016-12-171-2/+12
* mitigate blow-up of heap size under malloc/free contentionRich Felker2015-08-071-14/+14
* fix calloc when __simple_malloc implementation is usedRich Felker2015-06-221-0/+11
* refactor malloc's expand_heap to share with __simple_mallocRich Felker2015-06-141-58/+28
* in malloc, refuse to use brk if it grows into stackRich Felker2015-06-091-1/+9
* remove useless check of bin match in mallocRich Felker2015-03-041-1/+1
* fix init race that could lead to deadlock in malloc init codeRich Felker2015-03-041-39/+14
* make all objects used with atomic operations volatileRich Felker2015-03-031-5/+5
* avoid malloc failure for small requests when brk can't be extendedRich Felker2014-04-021-1/+23
* fix failure of malloc to set errno on heap (brk) exhaustionRich Felker2013-10-051-0/+1
* fix potential deadlock bug in libc-internal locking logicRich Felker2013-09-201-8/+7
* harden realloc/free to detect simple overflowsRich Felker2013-07-191-0/+6
* page-align initial brk value used by malloc in shared libcRich Felker2012-12-071-1/+5
* workaround gcc got-register-reload performance problems in mallocRich Felker2012-09-141-4/+8
* 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
* 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
* very cheap double-free checks in mallocRich Felker2011-03-231-0/+4
* make malloc(0) return unique pointers rather than NULLRich Felker2011-02-201-5/+9
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-121-0/+515