[pypy-commit] lang-smalltalk default: Adjust interrupt check constant, so we don't do it too often and slow

timfel noreply at buildbot.pypy.org
Tue Apr 16 13:04:07 CEST 2013


Author: Tim Felgentreff <timfelgentreff at gmail.com>
Branch: 
Changeset: r274:269e560adae6
Date: 2013-04-16 13:02 +0200
http://bitbucket.org/pypy/lang-smalltalk/changeset/269e560adae6/

Log:	Adjust interrupt check constant, so we don't do it too often and
	slow down the JIT

diff --git a/spyvm/constants.py b/spyvm/constants.py
--- a/spyvm/constants.py
+++ b/spyvm/constants.py
@@ -183,4 +183,4 @@
 #
 
 MAX_LOOP_DEPTH = 100
-INTERRUPT_COUNTER_SIZE = 1000
\ No newline at end of file
+INTERRUPT_COUNTER_SIZE = 10000


More information about the pypy-commit mailing list