Age | Commit message (Expand) | Author | Files | Lines |
2018-09-12 | split internal lock API out of libc.h, creating lock.h | Rich Felker | 1 | -1/+1 |
2018-09-12 | reduce spurious inclusion of libc.h | Rich Felker | 1 | -1/+0 |
2018-09-12 | hide dependency-triggering pointer object in malloc_usable_size.c | Rich Felker | 1 | -2/+2 |
2018-09-12 | rework malloc_usable_size to use malloc_impl.h | Rich Felker | 1 | -9/+1 |
2018-09-12 | move __memalign declaration to malloc_impl.h | Rich Felker | 2 | -4/+2 |
2018-09-12 | move declarations for malloc internals to malloc_impl.h | Rich Felker | 3 | -6/+2 |
2018-04-19 | reintroduce hardening against partially-replaced allocator | Rich Felker | 2 | -5/+10 |
2018-04-19 | return chunks split off by memalign using __bin_chunk instead of free | Rich Felker | 2 | -7/+5 |
2018-04-19 | using malloc implementation types/macros/idioms for memalign | Rich Felker | 1 | -20/+22 |
2018-04-19 | move malloc implementation types and macros to an internal header | Rich Felker | 1 | -37/+1 |
2018-04-19 | revert detection of partially-replaced allocator | Rich Felker | 3 | -15/+6 |
2018-04-18 | allow interposition/replacement of allocator (malloc) | Rich Felker | 4 | -23/+30 |
2018-04-17 | remove unused __brk function/source file | Rich Felker | 1 | -7/+0 |
2018-04-17 | comment __malloc_donate overflow logic | Rich Felker | 1 | -0/+3 |
2018-04-17 | ldso, malloc: implement reclaim_gaps via __malloc_donate | Alexander Monakov | 1 | -18/+43 |
2018-04-17 | malloc: fix an over-allocation bug | Alexander Monakov | 1 | -4/+4 |
2018-04-11 | optimize malloc0 | Alexander Monakov | 1 | -6/+23 |
2018-01-09 | revise the definition of multiple basic locks in the code | Jens Gustedt | 1 | -1/+1 |
2017-07-04 | fix undefined behavior in free | Alexander Monakov | 1 | -2/+3 |
2017-06-15 | handle mremap failure in realloc of mmap-serviced allocations | Rich Felker | 1 | -1/+2 |
2016-12-17 | use lookup table for malloc bin index instead of float conversion | Szabolcs Nagy | 1 | -2/+12 |
2016-01-31 | fix malloc_usable_size for NULL input | Szabolcs Nagy | 1 | -1/+1 |
2015-11-04 | remove external linkage from __simple_malloc definition | Rich Felker | 1 | -1/+1 |
2015-08-07 | mitigate blow-up of heap size under malloc/free contention | Rich Felker | 1 | -14/+14 |
2015-06-22 | fix regression/typo that disabled __simple_malloc when calloc is used | Rich Felker | 1 | -1/+1 |
2015-06-22 | fix calloc when __simple_malloc implementation is used | Rich Felker | 3 | -12/+15 |
2015-06-14 | refactor malloc's expand_heap to share with __simple_malloc | Rich Felker | 3 | -81/+126 |
2015-06-09 | in malloc, refuse to use brk if it grows into stack | Rich Felker | 1 | -1/+9 |
2015-03-04 | remove useless check of bin match in malloc | Rich Felker | 1 | -1/+1 |
2015-03-04 | fix init race that could lead to deadlock in malloc init code | Rich Felker | 1 | -39/+14 |
2015-03-03 | make all objects used with atomic operations volatile | Rich Felker | 2 | -6/+6 |
2014-08-25 | add malloc_usable_size function and non-stub malloc.h | Rich Felker | 1 | -0/+17 |
2014-04-02 | avoid malloc failure for small requests when brk can't be extended | Rich Felker | 1 | -1/+23 |
2013-12-12 | include cleanups: remove unused headers and add feature test macros | Szabolcs Nagy | 1 | -1/+0 |
2013-10-05 | slightly optimize __brk for size | Rich Felker | 1 | -1/+1 |
2013-10-05 | fix failure of malloc to set errno on heap (brk) exhaustion | Rich Felker | 1 | -0/+1 |
2013-09-20 | fix potential deadlock bug in libc-internal locking logic | Rich Felker | 1 | -8/+7 |
2013-07-23 | remove redundant check in memalign | Rich Felker | 1 | -1/+1 |
2013-07-23 | fix heap corruption bug in memalign | Rich Felker | 1 | -1/+3 |
2013-07-19 | harden realloc/free to detect simple overflows | Rich Felker | 1 | -0/+6 |
2013-07-04 | move core memalign code from aligned_alloc to __memalign | Rich Felker | 3 | -49/+55 |
2013-07-04 | move alignment check from aligned_alloc to posix_memalign | Rich Felker | 2 | -1/+2 |
2012-12-07 | page-align initial brk value used by malloc in shared libc | Rich Felker | 1 | -1/+5 |
2012-12-06 | fix invalid read in aligned_alloc | Rich Felker | 1 | -2/+3 |
2012-09-14 | workaround gcc got-register-reload performance problems in malloc | Rich Felker | 1 | -4/+8 |
2012-08-25 | implement "low hanging fruit" from C11 | Rich Felker | 3 | -47/+55 |
2012-04-24 | ditch the priority inheritance locks; use malloc's version of lock | Rich Felker | 1 | -4/+4 |
2011-11-16 | fix issue with excessive mremap syscalls on realloc | Rich Felker | 1 | -4/+2 |
2011-08-23 | use new a_crash() asm to optimize double-free handler. | Rich Felker | 1 | -2/+2 |
2011-08-15 | simplify and improve double-free check | Rich Felker | 1 | -2/+2 |