[pypy-commit] pypy stm-gc: stacklets are not compatible with stm right now.

arigo noreply at buildbot.pypy.org
Thu Apr 19 20:04:18 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: stm-gc
Changeset: r54556:ffae6c7c3160
Date: 2012-04-19 20:03 +0200
http://bitbucket.org/pypy/pypy/changeset/ffae6c7c3160/

Log:	stacklets are not compatible with stm right now.

diff --git a/pypy/config/translationoption.py b/pypy/config/translationoption.py
--- a/pypy/config/translationoption.py
+++ b/pypy/config/translationoption.py
@@ -107,7 +107,9 @@
                default=False, cmdline="--thread"),
     BoolOption("stm", "enable use of Software Transactional Memory",
                default=False, cmdline="--stm",
-               requires=[("translation.gc", "stmgc")]),
+               requires=[("translation.gc", "stmgc"),
+                         ("translation.continuation", False),  # XXX for now
+                         ]),
     BoolOption("sandbox", "Produce a fully-sandboxed executable",
                default=False, cmdline="--sandbox",
                requires=[("translation.thread", False)],


More information about the pypy-commit mailing list