aboutsummaryrefslogtreecommitdiff
path: root/malloc
AgeCommit message (Expand)AuthorFilesLines
2019-11-18Base max_fast on alignment, not width, of bins (Bug 24903)DJ Delorie1-1/+1
2019-11-18malloc: Various cleanups for malloc/tst-mxfastFlorian Weimer2-9/+8
2019-11-18Add glibc.malloc.mxfast tunableDJ Delorie4-7/+69
2019-11-18malloc: Fix missing accounting of top chunk in malloc_info [BZ #24026]Niklas Hambüchen1-0/+6
2019-11-18malloc: Remove unwanted leading whitespace in malloc_info [BZ #24867]Florian Weimer1-1/+1
2019-11-18Small tcache improvementsWilco Dijkstra1-8/+6
2019-11-18Fix assertion in malloc.c:tcache_get.Joseph Myers1-1/+1
2019-06-05malloc: Fix warnings in tests with GCC 9Florian Weimer2-0/+49
2019-05-22Fix tcache count maximum (BZ #24531)Wilco Dijkstra1-2/+7
2019-05-02malloc: Check for large bin list corruption when inserting unsorted chunkAdam Maris1-0/+4
2019-04-25Revert "memusagestat: use local glibc when linking [BZ #18465]"Florian Weimer1-2/+2
2019-04-24memusagestat: use local glibc when linking [BZ #18465]Mike Frysinger1-2/+2
2019-04-15malloc: Set and reset all hooks for tracing (Bug 16573)Carlos O'Donell1-26/+46
2019-01-18malloc: Revert fastbins to old-style atomicsFlorian Weimer1-96/+70
2019-01-01Update copyright dates not handled by scripts/update-copyrights.Joseph Myers3-3/+3
2019-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers76-76/+76
2018-12-31malloc: Always call memcpy in _int_realloc [BZ #24027]Florian Weimer1-42/+1
2018-12-28Replace check_mul_overflow_size_t with __builtin_mul_overflowAdhemerval Zanella5-30/+5
2018-12-21malloc: Check the alignment of mmapped chunks before unmapping.Istvan Kurucsai1-1/+4
2018-12-20malloc: Add more integrity checks to mremap_chunk.Istvan Kurucsai1-3/+9
2018-12-07malloc: Add another test for tcache double free check.DJ Delorie2-1/+57
2018-11-26malloc: tcache: Validate tc_idx before checking for double-frees [BZ #23907]Florian Weimer1-25/+25
2018-11-20malloc: tcache double free checkDJ Delorie4-0/+119
2018-11-13malloc: Use current (C11-style) atomics for fastbin accessFlorian Weimer1-70/+96
2018-11-12malloc: Convert the unlink macro to the unlink_chunk functionFlorian Weimer2-47/+49
2018-08-20malloc: Add ChangeLog for accidentally committed changeFlorian Weimer1-1/+1
2018-08-17malloc: Additional checks for unsorted bin integrity I.Istvan Kurucsai1-4/+15
2018-08-16malloc: Mitigate null-byte overflow attacksMoritz Eckert1-0/+4
2018-08-16malloc: Verify size of top chunk.Pochang Chen1-0/+3
2018-06-29libc: Extend __libc_freeres framework (Bug 23329).Carlos O'Donell2-2/+17
2018-06-29malloc: Update heap dumping/undumping comments [BZ #23351]Florian Weimer2-52/+6
2018-06-26Run thread shutdown functions in an explicit orderFlorian Weimer3-11/+21
2018-03-14malloc: harden removal from unsorted listFrancois Goichon1-0/+2
2018-03-09malloc: Revert sense of prev_inuse in commentsFlorian Weimer1-3/+3
2018-02-21Mechanically remove _IO_ name aliases for types and constants.Zack Weinberg1-3/+3
2018-02-10[BZ #22830] malloc_stats: restore cancellation for stderr correctly.Zack Weinberg3-1/+219
2018-01-29malloc: Use assert.h's assert macroSamuel Thibault1-7/+4
2018-01-18Fix integer overflows in internal memalign and malloc functions [BZ #22343]Arjun Shankar3-8/+276
2018-01-12malloc: Ensure that the consolidated fast chunk has a sane size.Istvan Kurucsai1-0/+6
2018-01-04Increase some test timeouts.Joseph Myers1-0/+1
2018-01-01Update copyright dates not handled by scripts/update-copyrights.Joseph Myers3-3/+3
2018-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers72-72/+72
2017-12-29tst-realloc: do not check for errno on success [BZ #22611]Aurelien Jarno1-4/+0
2017-12-11Replace = with += in CFLAGS-xxx.c/CPPFLAGS-xxx.cH.J. Lu1-2/+2
2017-11-30Fix integer overflow in malloc when tcache is enabled [BZ #22375]Arjun Shankar1-1/+2
2017-11-23malloc: Call tcache destructor in arena_thread_freeresFlorian Weimer2-7/+21
2017-11-16Prefer https for Sourceware linksSiddhesh Poyarekar1-1/+1
2017-11-15malloc: Account for all heaps in an arena in malloc_info [BZ #22439]Florian Weimer1-4/+13
2017-11-15malloc: Add missing arena lock in malloc_info [BZ #22408]Florian Weimer3-4/+115
2017-10-24Add single-threaded path to _int_mallocWilco Dijkstra1-25/+38