[pypy-svn] r58089 - pypy/build/doc

arigo at codespeak.net arigo at codespeak.net
Fri Sep 12 20:04:53 CEST 2008


Author: arigo
Date: Fri Sep 12 20:04:47 2008
New Revision: 58089

Modified:
   pypy/build/doc/benchmark_memory.txt
Log:
Clarify.


Modified: pypy/build/doc/benchmark_memory.txt
==============================================================================
--- pypy/build/doc/benchmark_memory.txt	(original)
+++ pypy/build/doc/benchmark_memory.txt	Fri Sep 12 20:04:47 2008
@@ -268,9 +268,9 @@
 In summary (and as always assuming the OS is Linux), 5
 independently-started pypy-c processes consume::
 
-    1 * size(code section) +
-    1 * size(data section) +
-    4 * size(modified data in the data section) +
+    1 * size(code section accessed so far) +
+    1 * size(data section accessed and not modified so far) +
+    5 * size(data section modified) +
     5 * size(malloc heap) +
     5 * size(framework GC heap in use)
 



More information about the Pypy-commit mailing list