Age | Commit message (Expand) | Author | Files | Lines |
2021-12-16 | Remove upper limit on tunable MALLOC_MMAP_THRESHOLD | Patrick McGehearty | 1 | -10/+5 |
2021-12-15 | malloc: Enable huge page support on main arena | Adhemerval Zanella | 3 | -6/+14 |
2021-12-15 | malloc: Move MORECORE fallback mmap to sysmalloc_mmap_fallback | Adhemerval Zanella | 1 | -32/+53 |
2021-12-15 | malloc: Add Huge Page support to arenas | Adhemerval Zanella | 3 | -44/+99 |
2021-12-15 | malloc: Add Huge Page support for mmap | Adhemerval Zanella | 3 | -9/+34 |
2021-12-15 | malloc: Move mmap logic to its own function | Adhemerval Zanella | 1 | -76/+88 |
2021-12-15 | malloc: Add THP/madvise support for sbrk | Adhemerval Zanella | 1 | -5/+29 |
2021-12-15 | malloc: Add madvise support for Transparent Huge Pages | Adhemerval Zanella | 4 | -0/+69 |
2021-11-17 | malloc: Fix malloc debug for 2.35 onwards | Stafford Horne | 1 | -2/+0 |
2021-11-17 | elf: Introduce GLRO (dl_libc_freeres), called from __libc_freeres | Florian Weimer | 1 | -0/+5 |
2021-10-29 | Disable -Waggressive-loop-optimizations warnings in tst-dynarray.c | Joseph Myers | 1 | -0/+15 |
2021-10-29 | Handle NULL input to malloc_usable_size [BZ #28506] | Siddhesh Poyarekar | 3 | -35/+25 |
2021-10-21 | Add alloc_align attribute to memalign et al | Jonathan Wakely | 1 | -2/+3 |
2021-09-27 | misc: Add __get_nprocs_sched | Adhemerval Zanella | 1 | -1/+1 |
2021-09-03 | Remove "Contributed by" lines | Siddhesh Poyarekar | 17 | -20/+0 |
2021-08-23 | mtrace: Fix output with PIE and ASLR [BZ #22716] | Siddhesh Poyarekar | 2 | -11/+10 |
2021-08-12 | mtrace: Use a static buffer for printing [BZ #25947] | Siddhesh Poyarekar | 1 | -11/+3 |
2021-08-05 | tst-mxfast: Don't run with mcheck | Siddhesh Poyarekar | 1 | -1/+2 |
2021-07-26 | Exclude static tests for mcheck and malloc-check | Siddhesh Poyarekar | 1 | -10/+3 |
2021-07-23 | Fix build and tests with --disable-tunables | Siddhesh Poyarekar | 3 | -30/+28 |
2021-07-22 | mcheck Fix malloc_usable_size [BZ #22057] | Siddhesh Poyarekar | 3 | -3/+9 |
2021-07-22 | Remove malloc hooks [BZ #23328] | Siddhesh Poyarekar | 4 | -41/+41 |
2021-07-22 | Move malloc_{g,s}et_state to libc_malloc_debug | Siddhesh Poyarekar | 5 | -167/+193 |
2021-07-22 | glibc.malloc.check: Wean away from malloc hooks | Siddhesh Poyarekar | 7 | -80/+213 |
2021-07-22 | mtrace: Wean away from malloc hooks | Siddhesh Poyarekar | 4 | -302/+253 |
2021-07-22 | Simplify __malloc_initialized | Siddhesh Poyarekar | 2 | -18/+18 |
2021-07-22 | mcheck: Wean away from malloc hooks [BZ #23489] | Siddhesh Poyarekar | 6 | -458/+592 |
2021-07-22 | Move malloc hooks into a compat DSO | Siddhesh Poyarekar | 13 | -111/+453 |
2021-07-22 | Remove __morecore and __default_morecore | Siddhesh Poyarekar | 6 | -46/+19 |
2021-07-22 | Remove __after_morecore_hook | Siddhesh Poyarekar | 3 | -24/+6 |
2021-07-22 | Make mcheck tests conditional on GLIBC_2.23 or earlier | Siddhesh Poyarekar | 1 | -0/+3 |
2021-07-22 | malloc: Fix tst-mallocfork3-malloc-check link | Samuel Thibault | 1 | -0/+1 |
2021-07-19 | tst-safe-linking: make false positives even more improbable | Siddhesh Poyarekar | 1 | -6/+25 |
2021-07-12 | mcheck: Align struct hdr to MALLOC_ALIGNMENT bytes [BZ #28068] | H.J. Lu | 2 | -2/+5 |
2021-07-09 | Force building with -fno-common | Florian Weimer | 2 | -2/+2 |
2021-07-09 | Add a generic malloc test for MALLOC_ALIGNMENT | H.J. Lu | 3 | -40/+73 |
2021-07-08 | _int_realloc is static | Siddhesh Poyarekar | 1 | -2/+2 |
2021-07-08 | Move mcheck symbol from stdlib to malloc | Siddhesh Poyarekar | 1 | -1/+1 |
2021-07-08 | Harden tcache double-free check | Siddhesh Poyarekar | 2 | -4/+41 |
2021-07-07 | tests-exclude-mcheck: Fix typo | Siddhesh Poyarekar | 1 | -1/+1 |
2021-07-06 | Exclude tst-realloc from tests-mcheck | Siddhesh Poyarekar | 1 | -1/+2 |
2021-07-04 | hooks.c: Remove incorrect comment | Siddhesh Poyarekar | 1 | -4/+0 |
2021-07-02 | mtrace: Add attribute nocommon to mallwatch | Tulio Magno Quites Machado Filho | 1 | -1/+1 |
2021-07-03 | Move glibc.malloc.check implementation into its own file | Siddhesh Poyarekar | 2 | -370/+391 |
2021-07-03 | mtrace: Deprecate mallwatch and tr_break | Siddhesh Poyarekar | 1 | -37/+20 |
2021-07-03 | Drop source dependencies on hooks.c and arena.c | Siddhesh Poyarekar | 1 | -4/+0 |
2021-07-02 | malloc: Initiate tcache shutdown even without allocations [BZ #28028] | JeffyChen | 1 | -1/+2 |
2021-07-02 | Add mcheck tests to malloc | Siddhesh Poyarekar | 1 | -0/+35 |
2021-06-28 | posix: Add _Fork [BZ #4737] | Adhemerval Zanella | 2 | -0/+216 |
2021-06-23 | More mcheck -> malloc-check refactoring | Siddhesh Poyarekar | 1 | -13/+17 |