Module Name: src
Committed By: abhinav
Date: Wed Oct 25 17:09:47 UTC 2017
Modified Files:
src/lib/libc/stdlib: jemalloc.3
Log Message:
Add malloc.conf to the NAME section
Remove Pp before Bd at few places
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/lib/libc/stdlib/jemalloc.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/stdlib/jemalloc.3
diff -u src/lib/libc/stdlib/jemalloc.3:1.9 src/lib/libc/stdlib/jemalloc.3:1.10
--- src/lib/libc/stdlib/jemalloc.3:1.9 Sat Jul 20 21:39:57 2013
+++ src/lib/libc/stdlib/jemalloc.3 Wed Oct 25 17:09:47 2017
@@ -38,7 +38,8 @@
.Dt JEMALLOC 3
.Os
.Sh NAME
-.Nm jemalloc
+.Nm jemalloc ,
+.Nm malloc.conf
.Nd the default system allocator
.Sh LIBRARY
.Lb libc
@@ -160,7 +161,6 @@ the source code:
.Bd -literal -offset indent
_malloc_options = "X";
.Ed
-.Pp
.It Em Z
Each byte of new memory allocated by
.Fn malloc ,
@@ -228,7 +228,6 @@ determine all metadata regarding small a
Small objects are managed in groups by page runs.
Each run maintains a bitmap that tracks which regions are in use.
Allocation requests can be grouped as follows.
-.Pp
.Bl -bullet -offset 3n
.It
Allocation requests that are no more than half the quantum (see the
@@ -306,7 +305,6 @@ allocation functions.
.El
.Sh EXAMPLES
To dump core whenever a problem occurs:
-.Pp
.Bd -literal -offset indent
ln -s 'A' /etc/malloc.conf
.Ed