aboutsummaryrefslogtreecommitdiff
path: root/malloc/malloc.c
AgeCommit message (Expand)AuthorFilesLines
2014-03-03Revert 4248f0da6ff9e7dd63464cdecec2dec332dfc2f0.Carlos O'Donell1-6/+109
2014-02-26Simplify calloc implementation.Ondřej Bílka1-109/+6
2014-02-10Use glibc_likely instead __builtin_expect.Ondřej Bílka1-7/+7
2014-02-10Remove THREAD_STATS.Ondřej Bílka1-40/+0
2014-01-02Reformat malloc to gnu style.Ondřej Bílka1-2069/+2214
2014-01-01Update copyright notices with scripts/update-copyrightsAllan McRae1-1/+1
2013-12-24Fix race in free() of fastbin chunk: BZ #15073Maxim Kuvyrkov1-8/+12
2013-12-10Expand MALLOC_COPY and MALLOC_ZERO to memcpy and memset.Ondřej Bílka1-18/+5
2013-12-10Drop PER_THREAD conditionals from malloc.Ondřej Bílka1-15/+0
2013-12-09Simplify perturb_byte logic.Ondřej Bílka1-21/+24
2013-12-09Replace malloc force_reg by atomic_forced_read.Ondřej Bílka1-15/+8
2013-12-06Fix BZ #15089: malloc_trim always trim for large padding.Fernando J. V. da Silva1-33/+35
2013-11-28Make memset in calloc a tail call.Ondřej Bílka1-2/+2
2013-11-21Add missing #include for malloc/hooks.c code.Roland McGrath1-2/+3
2013-11-20Consolidate valloc/pvalloc code.Ondřej Bílka1-109/+26
2013-11-01Fix malloc_info statistic. Fixes bug 16112Ondřej Bílka1-16/+4
2013-10-30malloc: Fix for infinite loop in memalign/posix_memalign.Will Newton1-0/+8
2013-10-30Use atomic operations to track memory. Fixes bug 11087Ondřej Bílka1-12/+11
2013-10-18Remove assert in malloc statistic. Fixes bug 12486.Ondřej Bílka1-9/+0
2013-09-20Add malloc probes for sbrk and heap resizing.Alexandre Oliva1-1/+5
2013-09-20Add probes for malloc retries.Alexandre Oliva1-0/+6
2013-09-20Add probes for malloc arena changes.Alexandre Oliva1-0/+1
2013-09-20Add probes for all changes to malloc options.Alexandre Oliva1-5/+25
2013-09-20Add first set of memory probes.Alexandre Oliva1-0/+4
2013-09-11malloc: Check for integer overflow in memalign.Will Newton1-0/+7
2013-09-11malloc: Check for integer overflow in valloc.Will Newton1-0/+7
2013-09-11malloc: Check for integer overflow in pvalloc.Will Newton1-0/+7
2013-08-29Fix typos.Ondřej Bílka1-1/+1
2013-06-08Use (void) in no-arguments function definitions.Joseph Myers1-1/+1
2013-03-08Remove __malloc_ptr_t.Joseph Myers1-19/+19
2013-01-17Add HAVE_MREMAP for mremap usagePino Toscano1-8/+4
2013-01-07Clean up __MALLOC_* macros.Joseph Myers1-15/+11
2013-01-02Update copyright notices with scripts/update-copyrights.Joseph Myers1-1/+1
2012-10-04Name space hygeine for madvise.Roland McGrath1-1/+1
2012-10-02Clarify memory allocation error diagnostics to avoid confusionDmitry V. Levin1-2/+1
2012-09-07Cleanup code duplication in malloc on fallback to use another arenaSiddhesh Poyarekar1-75/+11
2012-09-05* malloc/malloc.c (__libc_mallopt) <M_MMAP_MAX>: Fix indentation.Alexandre Oliva1-2/+2
2012-09-05Don't change no_dyn_threshold on mallopt failureAlexandre Oliva1-2/+4
2012-09-05Return requested size for malloc_usable_size when MALLOC_CHECK_ > 0Siddhesh Poyarekar1-1/+4
2012-08-17Make malloc build for no-threads configurations.Roland McGrath1-1/+2
2012-08-10Fix whitespace problems detected by commit hooks.Jeff Law1-6/+6
2012-08-10 [BZ #13939]Jeff Law1-21/+32
2012-05-24Make free chunk size a multiple of MALLOC_ALIGNMENTH.J. Lu1-4/+6
2012-05-24Properly handle MALLOC_ALIGNMENT > 2 * SIZE_SZH.J. Lu1-14/+64
2012-05-21Fix last changeAndreas Jaeger1-0/+2
2012-05-21Set MALLOC_ALIGNMENT to at least __alignof__ (long double) for new ABIs.Roland McGrath1-10/+14
2012-05-16For [BZ #208], accumulate malloc stats over all arenas.Paul Pluzhnikov1-19/+32
2012-03-20Move stdio-common/_itoa.h to sysdeps/genericH.J. Lu1-1/+1
2012-02-09Replace FSF snail mail address with URLs.Paul Eggert1-3/+2
2012-01-31Cleanups of mallocUlrich Drepper1-165/+110