index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
obmalloc.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-31626: Fix _PyObject_DebugReallocApi() (#4310)
Victor Stinner
2017-11-24
1
-7/+13
*
bpo-20064: Document PyObject_Malloc() (#4204)
Victor Stinner
2017-10-31
1
-1/+1
*
make comment not lie about the size of SMALL_REQUEST_THRESHOLD
Benjamin Peterson
2015-07-30
1
-1/+1
*
allow 2.7 to be built with asan (closes #24061)
Benjamin Peterson
2015-04-27
1
-0/+20
*
Issue #21810: Backport mmap-based arena allocation failure check.
Charles-François Natali
2014-06-19
1
-4/+9
*
mmap obmalloc arenas so that they may be immediately returned to the system w...
Benjamin Peterson
2014-02-04
1
-13/+37
*
fix building without pymalloc (closes #17228)
Benjamin Peterson
2013-02-20
1
-1/+1
*
Merged revisions 87834 via svnmerge from
Antoine Pitrou
2011-01-07
1
-6/+22
*
Merged revisions 86791 via svnmerge from
Stefan Krah
2010-11-26
1
-9/+9
*
Untabify C files. Will watch buildbots.
Antoine Pitrou
2010-05-09
1
-1071/+1071
*
Remove an unneeded variable.
Brett Cannon
2010-05-05
1
-2/+0
*
disable pymalloc tricks with the --with-valgrind option #2422
Benjamin Peterson
2009-12-03
1
-0/+39
*
http://bugs.python.org/issue6836
Kristján Valur Jónsson
2009-09-28
1
-1/+1
*
http://bugs.python.org/issue6836
Kristján Valur Jónsson
2009-09-28
1
-17/+87
*
Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default.
Martin v. Löwis
2008-09-25
1
-1/+1
*
Issue #3642: Suppress warning in obmalloc when size_t is
Martin v. Löwis
2008-09-11
1
-1/+3
*
Changed type of numarenas from uint to size_t to silence a GCC warning on 64b...
Christian Heimes
2008-08-22
1
-1/+1
*
Issue #2620: Overflow checking when allocating or reallocating memory
Gregory P. Smith
2008-07-22
1
-0/+18
*
Merge in release25-maint r60793:
Gregory P. Smith
2008-06-11
1
-2/+2
*
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
Martin v. Löwis
2007-07-21
1
-1/+1
*
Don't inline Py_ADDRESS_IN_RANGE with gcc 4+ either.
Neal Norwitz
2006-10-28
1
-1/+2
*
_PyObject_DebugMalloc(): The return value should add
Tim Peters
2006-06-04
1
-1/+1
*
In a PYMALLOC_DEBUG build obmalloc adds extra debugging info
Tim Peters
2006-06-04
1
-116/+124
*
Get compiling again
Neal Norwitz
2006-04-11
1
-1/+1
*
More low-hanging fruit. Still need to re-arrange some code (or find a better
Anthony Baxter
2006-04-11
1
-1/+1
*
Merge the tim-obmalloc branch to the trunk.
Tim Peters
2006-03-16
1
-205/+525
*
Oops, this is supposed to be disabled by default.
Neal Norwitz
2006-02-16
1
-1/+1
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-4/+7
*
Do a better job of not inlining Py_ADDRESS_IN_RANGE() for newer gcc's.
Neal Norwitz
2005-11-13
1
-2/+9
*
SF bug 1185883: PyObject_Realloc can't safely take over a block currently
Tim Peters
2005-07-10
1
-27/+23
*
whoops, I wanted that commented out by default, will add doc to Misc
Neal Norwitz
2004-06-06
1
-1/+1
*
SF bug 881641, make it easier to use valgrind
Neal Norwitz
2004-06-06
1
-4/+39
*
Whitespace normalization.
Walter Dörwald
2003-06-17
1
-6/+6
*
Remove MALLOC_ZERO_RETURNS_NULL.
Martin v. Löwis
2002-11-23
1
-2/+0
*
Patch #627105: Document that SYSTEM_PAGE_SIZE really should not be
Martin v. Löwis
2002-10-26
1
-1/+4
*
Fix warnings on 64-bit platforms about casts from pointers to ints.
Guido van Rossum
2002-09-12
1
-1/+1
*
Remove extraneous semicolon.
Jeremy Hylton
2002-07-18
1
-1/+1
*
Documented PYMALLOC_DEBUG. This completes primary coverage of all the
Tim Peters
2002-07-10
1
-1/+1
*
PyObject_Realloc(): If a small block is shrinking, bite the expense of
Tim Peters
2002-05-02
1
-5/+16
*
_PyObject_DebugCheckAddress(): If the leading pad bytes are corrupt,
Tim Peters
2002-04-28
1
-18/+25
*
_PyObject_DebugMallocStats(): Added some potentially expensive internal
Tim Peters
2002-04-18
1
-5/+41
*
PyObject_Malloc: make a tiny bit faster for platforms where malloc(0)
Tim Peters
2002-04-18
1
-2/+9
*
Remove some long-disabled debugging boilerplate.
Tim Peters
2002-04-18
1
-26/+0
*
_PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats.
Tim Peters
2002-04-13
1
-4/+8
*
Small anal correctness tweaks:
Tim Peters
2002-04-12
1
-2/+2
*
_PyObject_DebugRealloc(): rewritten to let the underlying realloc do
Tim Peters
2002-04-12
1
-27/+30
*
_PyObject_DebugDumpAddress(): clarify an output message.
Tim Peters
2002-04-12
1
-1/+1
*
PYMALLOC_{CLEAN, DEAD, FORBIDDEN}BYTE symbols: remove the PYMALLOC_
Tim Peters
2002-04-12
1
-34/+39
*
Move PyObject_Malloc and PyObject_Free here from object.c. Remove
Neil Schemenauer
2002-04-12
1
-61/+33
*
SF bug 542181: Realloc behavior
Tim Peters
2002-04-11
1
-12/+16
[next]