Author: Tobias Weber <tobias_webe...@gmx.de>
Branch: c8-tcp-style-trx-length
Changeset: r2142:cdbb6dade13a
Date: 2017-08-02 17:10 +0200
http://bitbucket.org/pypy/stmgc/changeset/cdbb6dade13a/

Log:    Change default transaction length to ~40 KB

diff --git a/c8/stm/nursery.c b/c8/stm/nursery.c
--- a/c8/stm/nursery.c
+++ b/c8/stm/nursery.c
@@ -20,8 +20,8 @@
 // corresponds to ~4 GB
 #define LARGE_FILL_MARK_NURSERY_BYTES   0x100000000L
 
-// corresponds to ~4 MB nursery fill
-#define STM_DEFAULT_RELATIVE_TRANSACTION_LENGTH (0.001)
+// corresponds to ~40 KB nursery fill
+#define STM_DEFAULT_RELATIVE_TRANSACTION_LENGTH (0.00001)
 // corresponds to ~4 KB nursery fill
 #define STM_MIN_RELATIVE_TRANSACTION_LENGTH (0.000001)
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to