diff options
author | Jason Evans <jasone@canonware.com> | 2016-06-01 20:53:56 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-06-06 03:42:24 (GMT) |
commit | c8c3cbdf47f97c2661395efc572b12ff2a7de05f (patch) | |
tree | 160b62faab81fd648828998d9339ce9797d8d12d /doc/jemalloc.xml.in | |
parent | a43db1c6088914d1a488abb93315e858c018419b (diff) | |
download | jemalloc-c8c3cbdf47f97c2661395efc572b12ff2a7de05f.zip jemalloc-c8c3cbdf47f97c2661395efc572b12ff2a7de05f.tar.gz jemalloc-c8c3cbdf47f97c2661395efc572b12ff2a7de05f.tar.bz2 |
Miscellaneous s/chunk/extent/ updates.
Diffstat (limited to 'doc/jemalloc.xml.in')
-rw-r--r-- | doc/jemalloc.xml.in | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/doc/jemalloc.xml.in b/doc/jemalloc.xml.in index 185f955..74daf6a 100644 --- a/doc/jemalloc.xml.in +++ b/doc/jemalloc.xml.in @@ -2087,12 +2087,12 @@ typedef struct { <literal>r-</literal> [<option>--enable-stats</option>] </term> - <listitem><para>Total number of bytes in active chunks mapped by the - allocator. This is a multiple of the chunk size, and is larger than - <link linkend="stats.active"><mallctl>stats.active</mallctl></link>. - This does not include inactive chunks, even those that contain unused - dirty pages, which means that there is no strict ordering between this - and <link + <listitem><para>Total number of bytes in active extents mapped by the + allocator. This is larger than <link + linkend="stats.active"><mallctl>stats.active</mallctl></link>. This + does not include inactive extents, even those that contain unused dirty + pages, which means that there is no strict ordering between this and + <link linkend="stats.resident"><mallctl>stats.resident</mallctl></link>.</para></listitem> </varlistentry> @@ -2737,9 +2737,10 @@ MAPPED_LIBRARIES: <para>To dump core whenever a problem occurs: <screen>ln -s 'abort:true' /etc/malloc.conf</screen> </para> - <para>To specify in the source a chunk size that is 16 MiB: + <para>To specify in the source that only one arena should be automatically + created: <programlisting language="C"><![CDATA[ -malloc_conf = "lg_chunk:24";]]></programlisting></para> +malloc_conf = "narenas:1";]]></programlisting></para> </refsect1> <refsect1 id="see_also"> <title>SEE ALSO</title> |