[pypy-commit] pypy gc-incminimark-pinning: remove forgotten debug_start/debug_stop

groggi noreply at buildbot.pypy.org
Mon Jun 2 17:24:20 CEST 2014


Author: Gregor Wegberg <code at gregorwegberg.com>
Branch: gc-incminimark-pinning
Changeset: r71836:3d936370c8aa
Date: 2014-05-20 14:31 +0200
http://bitbucket.org/pypy/pypy/changeset/3d936370c8aa/

Log:	remove forgotten debug_start/debug_stop

diff --git a/rpython/memory/gcwrapper.py b/rpython/memory/gcwrapper.py
--- a/rpython/memory/gcwrapper.py
+++ b/rpython/memory/gcwrapper.py
@@ -123,14 +123,10 @@
         return self.gc.can_move(addr)
 
     def pin(self, addr):
-        debug_start("groggi-gcwrapper-pin")
-        debug_stop("groggi-gcwrapper-pin")
         return self.gc.pin(addr)
 
     def unpin(self, addr):
-        debug_start("groggi-gcwrapper-unpin")
         self.gc.unpin(addr)
-        debug_stop("groggi-gcwrapper-unpin")
 
     def weakref_create_getlazy(self, objgetter):
         # we have to be lazy in reading the llinterp variable containing


More information about the pypy-commit mailing list