[pypy-commit] pypy stm-thread: Fix

arigo noreply at buildbot.pypy.org
Mon May 7 10:41:50 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: stm-thread
Changeset: r54925:06d74d3f9471
Date: 2012-05-07 10:41 +0200
http://bitbucket.org/pypy/pypy/changeset/06d74d3f9471/

Log:	Fix

diff --git a/pypy/rlib/rstm.py b/pypy/rlib/rstm.py
--- a/pypy/rlib/rstm.py
+++ b/pypy/rlib/rstm.py
@@ -56,6 +56,7 @@
             res = func(arg, retry_counter)
         except:
             fatalerror("no exception allowed in stm_callback")
+            assert 0
         llop.stm_stop_transaction(lltype.Void)
         return res
     return _stm_callback


More information about the pypy-commit mailing list