[pypy-svn] r79957 - pypy/trunk/pypy/rpython/memory/gc

arigo at codespeak.net arigo at codespeak.net
Fri Dec 10 15:40:13 CET 2010


Author: arigo
Date: Fri Dec 10 15:40:11 2010
New Revision: 79957

Modified:
   pypy/trunk/pypy/rpython/memory/gc/minimark.py
Log:
Also print the old nursery address.

Modified: pypy/trunk/pypy/rpython/memory/gc/minimark.py
==============================================================================
--- pypy/trunk/pypy/rpython/memory/gc/minimark.py	(original)
+++ pypy/trunk/pypy/rpython/memory/gc/minimark.py	Fri Dec 10 15:40:11 2010
@@ -423,7 +423,8 @@
             llarena.arena_protect(newnurs, self._nursery_memory_size(), False)
             self.nursery = newnurs
             self.nursery_top = self.nursery + self.nursery_size
-            debug_print("switching to nursery", self.nursery,
+            debug_print("switching from nursery", oldnurs,
+                        "to nursery", self.nursery,
                         "size", self.nursery_size)
             debug_stop("gc-debug")
 



More information about the Pypy-commit mailing list