summaryrefslogtreecommitdiff
path: root/malloc
AgeCommit message (Collapse)Author
2011-12-22Optimize tr_freehookUlrich Drepper
2011-12-03Fix comment in mcheck.hUlrich Drepper
2011-11-14Don't call reused_arena when _int_new_arena failedAndreas Schwab
2011-11-10Check malloc arana limit atomicallyAndreas Schwab
2011-10-29Avoid assertion in processes with VM in bad shapeUlrich Drepper
2011-09-11Avoid cast in non-gcc obstack_freeUlrich Drepper
2011-09-10Remove MALLOC_FAILURE_ACTION use in mallocUlrich Drepper
2011-09-10Simplify malloc initializationUlrich Drepper
Singificantly reduce the code needed at malloc initialization. In the process getpagesize is simplified by always initializing GLRO(dl_pagesize).
2011-09-10Simplify malloc codeUlrich Drepper
Remove all kinds of unused configuration options and dead code.
2011-09-10Remove support for !USE___THREADUlrich Drepper
2011-09-10Cleanup of configuration optionsUlrich Drepper
Make several tool features mandatory and simplify the code.
2011-07-08(memalign_check): No need to use checked_request2size.Ulrich Drepper
2011-06-28Fix quoting in some installed shell scriptsUlrich Drepper
2011-06-28Remove the --experimental-malloc optionUlrich Drepper
It's well tested, make it the default.
2011-05-29Mark malloc hook variables as deprecatedUlrich Drepper
2011-05-29Perhaps the real definition of __MALLOC_HOOK_VOLATILE should be addedUlrich Drepper
2011-05-29Missed one malloc hook variableUlrich Drepper
2011-05-29Declare malloc hook variables as volatile.Ulrich Drepper
2011-05-28Unify messagesUlrich Drepper
Some shell scripts unnecessarily used different formats for some messages. Unify them to reduce the work of translators.
2011-05-16Avoid potential deadlock in mtraceUlrich Drepper
The _dl_addr function might have to call malloc which would lead to a deadlock. Avoid by calling _dl_addr early.
2011-05-16Remove USE_MTRACE_FILE support from mtraceUlrich Drepper
2011-04-22Remove doubled words.Jim Meyering
2011-01-17Update copyright year.Ulrich Drepper
2010-12-25Use fastbin macro everywhere.Ulrich Drepper
2010-10-24Fix perturbing in malloc on free.Ulrich Drepper
2010-10-03Handle large requests.Ulrich Drepper
2010-08-16Replace divide and multiply with mask in sYSTRImAnton Blanchard
2010-05-06Fix race in free sanity check.Ulrich Drepper
2010-04-14Remove unintended change.Ulrich Drepper
2010-04-14Optimie x86-64 SSE4 memcmp for unaligned data.H.J. Lu
2010-04-08Fix possibly uninitilized variable handling.Ulrich Drepper
If malloc errors are ignored (which say aren't by default and never should be) malloc in the old, slow form might use an uninitialized variable.
2010-04-03One more sanity check in free.Ulrich Drepper
2010-04-03Fix set_max_fast in malloc.Ulrich Drepper
2010-03-26Remove stale reference to websiteUlrich Drepper
2010-03-26Remove unwanted malloc changes, again.Ulrich Drepper
2010-03-25Merge branch 'master' of ssh://sources.redhat.com/git/glibcUlrich Drepper
Conflicts: ChangeLog
2010-03-15Update copyright year.Ulrich Drepper
2010-02-24Fix typos I added in malloc.cUlrich Drepper
2010-02-24Fix assertion in palloc and pvalloc as well.Petr Baudis
2010-02-10Undo unintended maloc change.Ulrich Drepper
2010-02-09Avoid PLT call to fegetenv on s390Andreas Schwab
2010-01-14Fix malloc_info without prioor allocations.Ulrich Drepper
2009-11-06Fix spelling in memusagestat.cHolger Hans Peter Freyther
2009-11-01Restore locking in free_check.Ulrich Drepper
This code is only used when MALLOC_CHECK_ is used. Then some bogus crashes and/or assert could result from the locking changes. The code ain't fast.
2009-10-29Fix typos in format strings of malloc_info.John Sullivan
2009-10-29Fix repairing of memusage trace files.Ulrich Drepper
2009-10-29Fix wrap-around in memusage.Andreas Schwab
2009-08-31Add local assert function to avoid problems with memory allocation inUlrich Drepper
the real one.
2009-07-31Fix obstack* on i?86Jakub Jelinek
obstack calls several callbacks, so on i?86 it'd better be compiled without -mpreferred-stack-boundary=2, otherwise the callbacks are called with misaligned stack.
2009-07-16Fix race in corruption check.Ulrich Drepper
With atomic fastbins the checks performed can race with concurrent modifications of the arena. If we detect a problem re-do the test after getting the lock.