[pypy-commit] pypy stm-gc: Print another message when we are leaving transactional mode.

arigo noreply at buildbot.pypy.org
Fri Apr 20 19:02:33 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: stm-gc
Changeset: r54584:f25378799d99
Date: 2012-04-20 17:59 +0200
http://bitbucket.org/pypy/pypy/changeset/f25378799d99/

Log:	Print another message when we are leaving transactional mode.

diff --git a/pypy/rpython/rtyper.py b/pypy/rpython/rtyper.py
--- a/pypy/rpython/rtyper.py
+++ b/pypy/rpython/rtyper.py
@@ -276,6 +276,7 @@
                 self.log.event('specializing transactionally %d blocks' %
                                (len(pending),))
                 transaction.run()
+                self.log.event('left transactional mode')
                 blockcount += len(pending)
                 self.already_seen.update(dict.fromkeys(pending, True))
 


More information about the pypy-commit mailing list