summaryrefslogtreecommitdiffstats
path: root/Objects/obmalloc.c
Commit message (Expand)AuthorAgeFilesLines
* SF bug 1185883: PyObject_Realloc can't safely take over a block currentlyTim Peters2005-07-101-27/+23
* whoops, I wanted that commented out by default, will add doc to MiscNeal Norwitz2004-06-061-1/+1
* SF bug 881641, make it easier to use valgrindNeal Norwitz2004-06-061-4/+39
* Whitespace normalization.Walter Dörwald2003-06-171-6/+6
* Remove MALLOC_ZERO_RETURNS_NULL.Martin v. Löwis2002-11-231-2/+0
* Patch #627105: Document that SYSTEM_PAGE_SIZE really should not beMartin v. Löwis2002-10-261-1/+4
* Fix warnings on 64-bit platforms about casts from pointers to ints.Guido van Rossum2002-09-121-1/+1
* Remove extraneous semicolon.Jeremy Hylton2002-07-181-1/+1
* Documented PYMALLOC_DEBUG. This completes primary coverage of all theTim Peters2002-07-101-1/+1
* PyObject_Realloc(): If a small block is shrinking, bite the expense ofTim Peters2002-05-021-5/+16
* _PyObject_DebugCheckAddress(): If the leading pad bytes are corrupt,Tim Peters2002-04-281-18/+25
* _PyObject_DebugMallocStats(): Added some potentially expensive internalTim Peters2002-04-181-5/+41
* PyObject_Malloc: make a tiny bit faster for platforms where malloc(0)Tim Peters2002-04-181-2/+9
* Remove some long-disabled debugging boilerplate.Tim Peters2002-04-181-26/+0
* _PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats.Tim Peters2002-04-131-4/+8
* Small anal correctness tweaks:Tim Peters2002-04-121-2/+2
* _PyObject_DebugRealloc(): rewritten to let the underlying realloc doTim Peters2002-04-121-27/+30
* _PyObject_DebugDumpAddress(): clarify an output message.Tim Peters2002-04-121-1/+1
* PYMALLOC_{CLEAN, DEAD, FORBIDDEN}BYTE symbols: remove the PYMALLOC_Tim Peters2002-04-121-34/+39
* Move PyObject_Malloc and PyObject_Free here from object.c. RemoveNeil Schemenauer2002-04-121-61/+33
* SF bug 542181: Realloc behaviorTim Peters2002-04-111-12/+16
* Minor improvements to the stats output dump, including adding commas toTim Peters2002-04-061-10/+34
* Repair an incomprehensible comment.Tim Peters2002-04-051-2/+2
* _PyMalloc_DebugDumpStats(): vastly improved the output, and it nowTim Peters2002-04-051-21/+58
* Widespread, but mostly in _PyMalloc_Malloc: optimize away all expensiveTim Peters2002-04-051-40/+39
* _PyMalloc_Realloc(): removed a now-pointless cast.Tim Peters2002-04-041-1/+1
* _PyMalloc_{Malloc, Realloc}: Strive to meet the doc's promises aboutTim Peters2002-04-041-42/+44
* Fixed errors in two comments.Tim Peters2002-04-011-3/+4
* Restructured my pool-management overview in terms of the threeTim Peters2002-04-011-21/+61
* New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void).Tim Peters2002-04-011-1/+97
* Add one more assert that indirectly interlocking conditions are consistentTim Peters2002-03-311-0/+1
* Fixed an error in a new assert.Tim Peters2002-03-311-1/+1
* Fixed a typo in a new comment.Tim Peters2002-03-311-1/+1
* _PyMalloc_Free(): As was already done for _PyMalloc_Malloc, rearrangedTim Peters2002-03-311-37/+47
* Added a long-overdue comment block giving an overview of pool operationsTim Peters2002-03-311-3/+60
* It's once again thought safe to call the pymalloc free/realloc with anTim Peters2002-03-301-14/+27
* new_arena(): In error cases, reset the number of available pools to 0.Tim Peters2002-03-301-0/+1
* Changed the #-of-arenas counters to uints -- no need to be insane aboutTim Peters2002-03-301-10/+11
* Turns out the off_t macro isn't used anymore, so got rid of it.Tim Peters2002-03-301-3/+0
* Now that we're no longer linking arenas together, there's no need toTim Peters2002-03-301-25/+21
* Retract the claim that this is always safe if PyMem_{Del, DEL, Free, FREE}Tim Peters2002-03-301-0/+4
* Lots of changes:Tim Peters2002-03-301-127/+225
* Add missing "void" to function.Neil Schemenauer2002-03-281-1/+1
* PYMALLOC_DEBUG routines: The "check API family" gimmick was going nowhereTim Peters2002-03-281-62/+34
* _PyMalloc_DebugRealloc(): simplify decl of "fresh".Tim Peters2002-03-241-5/+15
* Minor code cleanup -- no semantic changes.Tim Peters2002-03-231-22/+28
* Give Python a debug-mode pymalloc, much as sketched on Python-Dev.Tim Peters2002-03-231-17/+315
* Just whitespace fiddling.Tim Peters2002-03-231-10/+10
* Build obmalloc.c directly instead of #include'ing from object.c.Tim Peters2002-03-231-0/+50
* Remove malloc hooks.Neil Schemenauer2002-03-221-69/+0