[pypy-commit] pypy stmgc-c7: fix unused breakfinder

Raemi noreply at buildbot.pypy.org
Thu Apr 17 17:28:24 CEST 2014


Author: Remi Meier <remi.meier at inf.ethz.ch>
Branch: stmgc-c7
Changeset: r70702:06328c7fb4d5
Date: 2014-04-17 17:24 +0200
http://bitbucket.org/pypy/pypy/changeset/06328c7fb4d5/

Log:	fix unused breakfinder

diff --git a/rpython/translator/stm/breakfinder.py b/rpython/translator/stm/breakfinder.py
--- a/rpython/translator/stm/breakfinder.py
+++ b/rpython/translator/stm/breakfinder.py
@@ -3,8 +3,8 @@
 
 
 TRANSACTION_BREAK = set([
-    'stm_commit_transaction',
-    'stm_start_inevitable_transaction',
+    'stm_commit_if_not_atomic',
+    'stm_start_inevitable_if_not_atomic',
     #'stm_perform_transaction',
     #'stm_partial_commit_and_resume_other_threads', # new priv_revision
     #'jit_assembler_call',


More information about the pypy-commit mailing list