Author: Gregor Wegberg <[email protected]>
Branch: gc-incminimark-pinning-countlimit
Changeset: r71863:59cb06c20b3a
Date: 2014-05-30 16:53 +0200
http://bitbucket.org/pypy/pypy/changeset/59cb06c20b3a/
Log: There is a limit for sorting an AddressStack, add comment for this
in regard to `max_number_of_pinned_objects`.
This was visible in the sort() function comment, however I just
didn't read it before.
diff --git a/rpython/memory/gc/incminimark.py b/rpython/memory/gc/incminimark.py
--- a/rpython/memory/gc/incminimark.py
+++ b/rpython/memory/gc/incminimark.py
@@ -258,7 +258,8 @@
"nursery_cleanup": 32768 * WORD,
# Number of objects that are allowed to be pinned in the nursery
- # at the same time.
+ # at the same time. Must be lesser than or equal to the chunk size
+ # of an AddressStack.
"max_number_of_pinned_objects": 100,
}
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit