diff options
author | Jason Evans <jasone@canonware.com> | 2017-04-16 22:31:16 -0700 |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2017-04-17 14:47:45 -0700 |
commit | 881fbf762f18c8a94e71e94fb78f03d59bd4ad58 (patch) | |
tree | 6db4fcdeb558e16c1b1c6557b0f9de8936ca5e60 /doc | |
parent | 76b35f4b2fdcc6eeb0ee7ecfbeaa05ef3fa2753e (diff) |
Prefer old/low extent_t structures during reuse.
Rather than using a LIFO queue to track available extent_t structures,
use a red-black tree, and always choose the oldest/lowest available
during reuse.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/jemalloc.xml.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/jemalloc.xml.in b/doc/jemalloc.xml.in index 91127a03..3b98395d 100644 --- a/doc/jemalloc.xml.in +++ b/doc/jemalloc.xml.in @@ -2691,14 +2691,14 @@ struct extent_hooks_s { counters</link>.</para></listitem> </varlistentry> - <varlistentry id="stats.arenas.i.mutexes.extent_freelist"> + <varlistentry id="stats.arenas.i.mutexes.extent_avail"> <term> - <mallctl>stats.arenas.<i>.mutexes.extent_freelist.{counter}</mallctl> + <mallctl>stats.arenas.<i>.mutexes.extent_avail.{counter}</mallctl> (<type>counter specific type</type>) <literal>r-</literal> [<option>--enable-stats</option>] </term> - <listitem><para>Statistics on <varname>arena.<i>.extent_freelist - </varname> mutex (arena scope; extent freelist related). + <listitem><para>Statistics on <varname>arena.<i>.extent_avail + </varname> mutex (arena scope; extent avail related). <mallctl>{counter}</mallctl> is one of the counters in <link linkend="mutex_counters">mutex profiling counters</link>.</para></listitem> |