[pypy-commit] stmgc c7-refactor: fix abort_if_needed

Remi Meier noreply at buildbot.pypy.org
Tue Feb 25 15:23:20 CET 2014


Author: Remi Meier
Branch: c7-refactor
Changeset: r860:a689a41e2fcd
Date: 2014-02-25 15:22 +0100
http://bitbucket.org/pypy/stmgc/changeset/a689a41e2fcd/

Log:	fix abort_if_needed

diff --git a/c7/stm/core.h b/c7/stm/core.h
--- a/c7/stm/core.h
+++ b/c7/stm/core.h
@@ -191,7 +191,7 @@
         break;
 
     case TS_MUST_ABORT:
-        abort_with_mutex();
+        stm_abort_transaction();
 
     default:
         assert(!"commit: bad transaction_state");


More information about the pypy-commit mailing list