View | Details | Raw Unified | Return to bug 99231
Collapse All | Expand All

(-)lib/libc/stdlib/malloc.3 (-7 / +2 lines)
Lines 36-42 Link Here
36
.\"     @(#)malloc.3	8.1 (Berkeley) 6/4/93
36
.\"     @(#)malloc.3	8.1 (Berkeley) 6/4/93
37
.\" $FreeBSD: src/lib/libc/stdlib/malloc.3,v 1.63 2005/01/20 09:17:04 ru Exp $
37
.\" $FreeBSD: src/lib/libc/stdlib/malloc.3,v 1.63 2005/01/20 09:17:04 ru Exp $
38
.\"
38
.\"
39
.Dd August 19, 2004
39
.Dd June 21, 2006
40
.Dt MALLOC 3
40
.Dt MALLOC 3
41
.Os
41
.Os
42
.Sh NAME
42
.Sh NAME
Lines 192-200 Link Here
192
or
192
or
193
.Fn reallocf
193
.Fn reallocf
194
will be initialized to 0xd0.
194
will be initialized to 0xd0.
195
This options also sets the
196
.Dq R
197
option.
198
This is intended for debugging and will impact performance negatively.
195
This is intended for debugging and will impact performance negatively.
199
.It H
196
.It H
200
Pass a hint to the kernel about pages unused by the allocation functions.
197
Pass a hint to the kernel about pages unused by the allocation functions.
Lines 241-249 Link Here
241
.It Z
238
.It Z
242
This option implicitly sets the
239
This option implicitly sets the
243
.Dq J
240
.Dq J
244
and
241
option, and then zeros out the bytes that were requested.
245
.Dq R
246
options, and then zeros out the bytes that were requested.
247
This is intended for debugging and will impact performance negatively.
242
This is intended for debugging and will impact performance negatively.
248
.It <
243
.It <
249
Reduce the size of the cache by a factor of two.
244
Reduce the size of the cache by a factor of two.

Return to bug 99231