[pypy-commit] pypy stmgc-c7: The value 100 doesn't have a special meaning here, it's just a float

arigo noreply at buildbot.pypy.org
Thu Apr 10 16:11:07 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-c7
Changeset: r70540:6359d9323db1
Date: 2014-04-10 16:10 +0200
http://bitbucket.org/pypy/pypy/changeset/6359d9323db1/

Log:	The value 100 doesn't have a special meaning here, it's just a float

diff --git a/rpython/translator/stm/src_stm/stmgcintf.c b/rpython/translator/stm/src_stm/stmgcintf.c
--- a/rpython/translator/stm/src_stm/stmgcintf.c
+++ b/rpython/translator/stm/src_stm/stmgcintf.c
@@ -38,7 +38,7 @@
 
 void pypy_stm_set_transaction_length(double fraction)
 {
-    /* the value '100' means 'use the default'.  Other values are
+    /* the value '1.0' means 'use the default'.  Other values are
        interpreted proportionally, up to some maximum. */
     long low_fill_mark = (long)(LOW_FILL_MARK * fraction);
     if (low_fill_mark > NURSERY_SIZE * 3 / 4)


More information about the pypy-commit mailing list