[Python-checkins] r50910 - python/branches/bcannon-sandboxing/Objects/trackedmalloc.c

brett.cannon python-checkins at python.org
Fri Jul 28 19:26:55 CEST 2006


Author: brett.cannon
Date: Fri Jul 28 19:26:55 2006
New Revision: 50910

Modified:
   python/branches/bcannon-sandboxing/Objects/trackedmalloc.c
Log:
Migrate todo list to file doc instead of personal Writely doc.


Modified: python/branches/bcannon-sandboxing/Objects/trackedmalloc.c
==============================================================================
--- python/branches/bcannon-sandboxing/Objects/trackedmalloc.c	(original)
+++ python/branches/bcannon-sandboxing/Objects/trackedmalloc.c	Fri Jul 28 19:26:55 2006
@@ -39,6 +39,12 @@
     For malloc(), we need to either use functions provided by the C library
     (for glibc, see
     http://www.gnu.org/software/libc/manual/html_node/Summary-of-Malloc.html).
+
+XXX:
++ convert over all APIs.
++ add proper Py_TRACK_MEMORY #ifdef protections.
++ Raise an error during compilation if required functionality (e.g. mallinfo())
+  not available for tracking memory, even if requested.
 */
 
 unsigned long Py_ProcessMemUsage = 0;


More information about the Python-checkins mailing list