Add malloc.conf to the NAME section

Remove Pp before Bd at few places
This commit is contained in:
abhinav 2017-10-25 17:09:47 +00:00
parent c4a4501400
commit 3996dac127

View File

@ -38,7 +38,8 @@
.Dt JEMALLOC 3 .Dt JEMALLOC 3
.Os .Os
.Sh NAME .Sh NAME
.Nm jemalloc .Nm jemalloc ,
.Nm malloc.conf
.Nd the default system allocator .Nd the default system allocator
.Sh LIBRARY .Sh LIBRARY
.Lb libc .Lb libc
@ -160,7 +161,6 @@ the source code:
.Bd -literal -offset indent .Bd -literal -offset indent
_malloc_options = "X"; _malloc_options = "X";
.Ed .Ed
.Pp
.It Em Z .It Em Z
Each byte of new memory allocated by Each byte of new memory allocated by
.Fn malloc , .Fn malloc ,
@ -228,7 +228,6 @@ determine all metadata regarding small and large allocations in constant time.
Small objects are managed in groups by page runs. Small objects are managed in groups by page runs.
Each run maintains a bitmap that tracks which regions are in use. Each run maintains a bitmap that tracks which regions are in use.
Allocation requests can be grouped as follows. Allocation requests can be grouped as follows.
.Pp
.Bl -bullet -offset 3n .Bl -bullet -offset 3n
.It .It
Allocation requests that are no more than half the quantum (see the Allocation requests that are no more than half the quantum (see the
@ -306,7 +305,6 @@ allocation functions.
.El .El
.Sh EXAMPLES .Sh EXAMPLES
To dump core whenever a problem occurs: To dump core whenever a problem occurs:
.Pp
.Bd -literal -offset indent .Bd -literal -offset indent
ln -s 'A' /etc/malloc.conf ln -s 'A' /etc/malloc.conf
.Ed .Ed