aboutsummaryrefslogtreecommitdiff
path: root/malloc/malloc.c
AgeCommit message (Expand)AuthorFilesLines
2021-06-02fix typoXeonacid1-1/+1
2021-04-12Further fixes for REALLOC_ZERO_BYTES_FREES commentPaul Eggert1-7/+8
2021-04-11Fix REALLOC_ZERO_BYTES_FREES comment to match C17Paul Eggert1-4/+7
2021-03-26malloc: Ensure mtag code path in checked_request2size is coldSzabolcs Nagy1-2/+7
2021-03-26malloc: Remove unnecessary tagging around _mid_memalignSzabolcs Nagy1-8/+2
2021-03-26malloc: Rename chunk2rawmemSzabolcs Nagy1-41/+41
2021-03-26malloc: Use chunk2rawmem throughoutSzabolcs Nagy1-25/+33
2021-03-26malloc: Use different tag after mremapSzabolcs Nagy1-1/+1
2021-03-26malloc: Use memsize instead of CHUNK_AVAILABLE_SIZESzabolcs Nagy1-20/+19
2021-03-26malloc: Use mtag_enabled instead of USE_MTAGSzabolcs Nagy1-6/+4
2021-03-26malloc: Use branches instead of mtag_granule_maskSzabolcs Nagy1-20/+14
2021-03-26malloc: Change calloc when tagging is disabledSzabolcs Nagy1-6/+4
2021-03-26malloc: Only support zeroing and not arbitrary memset with mtagSzabolcs Nagy1-9/+8
2021-03-26malloc: Use global flag instead of function pointer dispatch for mtagSzabolcs Nagy1-20/+38
2021-03-26malloc: Refactor TAG_ macros to avoid indirectionSzabolcs Nagy1-43/+38
2021-03-26malloc: Avoid taggig mmaped memory on freeSzabolcs Nagy1-3/+4
2021-03-26malloc: Move MTAG_MMAP_FLAGS definitionSzabolcs Nagy1-0/+2
2021-03-26malloc: Fix a potential realloc issue with memory taggingSzabolcs Nagy1-7/+7
2021-03-26malloc: Fix a realloc crash with heap tagging [BZ 27468]Szabolcs Nagy1-1/+3
2021-03-25Support for multiple versions in versioned_symbol, compat_symbolFlorian Weimer1-1/+1
2021-01-02Update copyright dates with scripts/update-copyrightsPaul Eggert1-1/+1
2020-12-29free: preserve errno [BZ#17924]Paul Eggert1-4/+9
2020-12-21malloc: Basic support for memory tagging in the malloc() familyRichard Earnshaw1-67/+269
2020-12-16malloc: Use __libc_initial to detect an inner libcFlorian Weimer1-0/+2
2020-12-11malloc: Detect infinite-loop in _int_free when freeing tcache [BZ#27052]W. Hashimoto1-1/+4
2020-10-06Replace Minumum/minumum with Minimum/minimumH.J. Lu1-1/+1
2020-09-17Update mallinfo2 ABI, and testDJ Delorie1-0/+2
2020-08-31Add mallinfo2 function that support sizes >= 4GB.Martin Liska1-5/+30
2020-04-06malloc: ensure set_max_fast never stores zero [BZ #25733]DJ Delorie1-1/+1
2020-03-31Fix alignment bug in Safe-LinkingEyal Itkin1-11/+11
2020-03-31Typo fixes and CR cleanup in Safe-LinkingEyal Itkin1-15/+15
2020-03-29Add Safe-Linking to fastbins and tcacheEyal Itkin1-13/+58
2020-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
2019-12-05Correct range checking in mallopt/mxfast/tcache [BZ #25194]DJ Delorie1-12/+20
2019-10-30Base max_fast on alignment, not width, of bins (Bug 24903)DJ Delorie1-1/+1
2019-09-07Prefer https to http for gnu.org and fsf.org URLsPaul Eggert1-1/+1
2019-08-09Add glibc.malloc.mxfast tunableDJ Delorie1-7/+14
2019-08-08malloc: Fix missing accounting of top chunk in malloc_info [BZ #24026]Niklas Hambüchen1-0/+6
2019-08-01malloc: Remove unwanted leading whitespace in malloc_info [BZ #24867]Florian Weimer1-1/+1
2019-05-17Small tcache improvementsWilco Dijkstra1-8/+6
2019-05-10Fix tcache count maximum (BZ #24531)Wilco Dijkstra1-2/+7
2019-04-18malloc: make malloc fail with requests larger than PTRDIFF_MAX (BZ#23741)Adhemerval Zanella1-64/+48
2019-03-14malloc: Check for large bin list corruption when inserting unsorted chunkAdam Maris1-0/+4
2019-02-06Avoid "inline" after return type in function definitions.Joseph Myers1-22/+11
2019-02-04Fix assertion in malloc.c:tcache_get.Joseph Myers1-1/+1
2019-01-18malloc: Revert fastbins to old-style atomicsFlorian Weimer1-96/+70
2019-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
2018-12-31malloc: Always call memcpy in _int_realloc [BZ #24027]Florian Weimer1-42/+1
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