Author: Armin Rigo <[email protected]>
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)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to