aboutsummaryrefslogtreecommitdiff
path: root/malloc/arena.c
AgeCommit message (Expand)AuthorFilesLines
2021-07-08Harden tcache double-free checkSiddhesh Poyarekar1-0/+8
2021-05-07malloc: Make tunable callback functions staticH.J. Lu1-2/+2
2021-03-26malloc: Use branches instead of mtag_granule_maskSzabolcs Nagy1-1/+0
2021-03-26malloc: Use global flag instead of function pointer dispatch for mtagSzabolcs Nagy1-32/+1
2021-03-26malloc: Refactor TAG_ macros to avoid indirectionSzabolcs Nagy1-8/+8
2021-03-26malloc: Simplify __mtag_tag_new_usableSzabolcs Nagy1-5/+0
2021-01-02Update copyright dates with scripts/update-copyrightsPaul Eggert1-1/+1
2020-12-21malloc: Basic support for memory tagging in the malloc() familyRichard Earnshaw1-3/+56
2020-12-16malloc: Use __libc_initial to detect an inner libcFlorian Weimer1-8/+5
2020-10-30malloc debug: fix compile error when enable macro MALLOC_DEBUG > 1liqingqing1-2/+2
2020-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers1-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-0/+2
2019-04-23Remove do_set_mallopt_check prototypeH.J. Lu1-1/+0
2019-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
2018-11-12malloc: Convert the unlink macro to the unlink_chunk functionFlorian Weimer1-2/+2
2018-06-26Run thread shutdown functions in an explicit orderFlorian Weimer1-3/+2
2018-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
2017-11-23malloc: Call tcache destructor in arena_thread_freeresFlorian Weimer1-0/+5
2017-10-17Improve malloc initialization sequenceWilco Dijkstra1-9/+4
2017-08-31malloc: Remove the internal_function attributeFlorian Weimer1-7/+0
2017-08-30malloc: Remove corrupt arena flagFlorian Weimer1-18/+2
2017-08-30malloc: Remove check_action variable [BZ #21754]Florian Weimer1-8/+3
2017-07-06Add per-thread cache to mallocDJ Delorie1-0/+11
2017-06-07tunables: Clean up hooks to get and set tunablesSiddhesh Poyarekar1-18/+18
2017-02-08Fix getting tunable values on big-endian (BZ #21109)Siddhesh Poyarekar1-4/+4
2017-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
2016-12-31Add framework for tunablesSiddhesh Poyarekar1-0/+54
2016-10-28malloc: Use accessors for chunk metadata accessFlorian Weimer1-3/+3
2016-09-21malloc: Manual part of conversion to __libc_lockFlorian Weimer1-3/+3
2016-09-06malloc: Automated part of conversion to __libc_lockFlorian Weimer1-26/+26
2016-08-02malloc: Preserve arena free list/thread count invariant [BZ #20370]Florian Weimer1-5/+36
2016-06-21malloc: Avoid premature fallback to mmap [BZ #20284]Florian Weimer1-6/+4
2016-06-20Revert __malloc_initialize_hook symbol poisoningFlorian Weimer1-1/+1
2016-06-10malloc: Remove __malloc_initialize_hook from the API [BZ #19564]Florian Weimer1-1/+3
2016-04-14malloc: Add missing internal_function attributes on function definitionsFlorian Weimer1-0/+3
2016-04-14malloc: Remove malloc hooks from fork handlerFlorian Weimer1-117/+8
2016-04-14malloc: Run fork handler as late as possible [BZ #19431]Florian Weimer1-41/+17
2016-02-19malloc: Remove NO_THREADSFlorian Weimer1-3/+0
2016-02-19malloc: Remove arena_mem variableFlorian Weimer1-6/+0
2016-01-04Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
2015-12-23malloc: Update comment for list_lockFlorian Weimer1-3/+4
2015-12-21malloc: Fix list_lock/arena lock deadlock [BZ #19182]Florian Weimer1-15/+51
2015-12-16malloc: Fix attached thread reference count handling [BZ #19243]Florian Weimer1-4/+8
2015-11-24Replace MUTEX_INITIALIZER with _LIBC_LOCK_INITIALIZER in generic codeFlorian Weimer1-1/+1
2015-10-28malloc: Prevent arena free_list from turning cyclic [BZ #19048]Florian Weimer1-5/+65
2015-10-17malloc: Rewrite with explicit TLS access using __threadFlorian Weimer1-29/+19
2015-10-07malloc: Consistently apply trim_threshold to all heaps (Bug 17195)Carlos O'Donell1-2/+8
2015-08-24Don't use the main arena in retry path if it is corruptSiddhesh Poyarekar1-0/+4
2015-08-24Drop unused first argument from arena_get2Siddhesh Poyarekar1-5/+3