Deleted Added
full compact
malloc.9 (230679) malloc.9 (233648)
1.\"
2.\" Copyright (c) 1996 The NetBSD Foundation, Inc.
3.\" All rights reserved.
4.\"
5.\" This code is derived from software contributed to The NetBSD Foundation
6.\" by Paul Kranenburg.
7.\"
8.\" Redistribution and use in source and binary forms, with or without

--- 13 unchanged lines hidden (view full) ---

22.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27.\" POSSIBILITY OF SUCH DAMAGE.
28.\"
29.\" $NetBSD: malloc.9,v 1.3 1996/11/11 00:05:11 lukem Exp $
1.\"
2.\" Copyright (c) 1996 The NetBSD Foundation, Inc.
3.\" All rights reserved.
4.\"
5.\" This code is derived from software contributed to The NetBSD Foundation
6.\" by Paul Kranenburg.
7.\"
8.\" Redistribution and use in source and binary forms, with or without

--- 13 unchanged lines hidden (view full) ---

22.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27.\" POSSIBILITY OF SUCH DAMAGE.
28.\"
29.\" $NetBSD: malloc.9,v 1.3 1996/11/11 00:05:11 lukem Exp $
30.\" $FreeBSD: head/share/man/man9/malloc.9 230679 2012-01-28 23:30:39Z kmacy $
30.\" $FreeBSD: head/share/man/man9/malloc.9 233648 2012-03-29 05:02:12Z eadler $
31.\"
32.Dd January 28, 2012
33.Dt MALLOC 9
34.Os
35.Sh NAME
36.Nm malloc ,
37.Nm free ,
38.Nm realloc ,

--- 80 unchanged lines hidden (view full) ---

119.Fa flags
120argument further qualifies
121.Fn malloc Ns 's
122operational characteristics as follows:
123.Bl -tag -width indent
124.It Dv M_ZERO
125Causes the allocated memory to be set to all zeros.
126.It Dv M_NODUMP
31.\"
32.Dd January 28, 2012
33.Dt MALLOC 9
34.Os
35.Sh NAME
36.Nm malloc ,
37.Nm free ,
38.Nm realloc ,

--- 80 unchanged lines hidden (view full) ---

119.Fa flags
120argument further qualifies
121.Fn malloc Ns 's
122operational characteristics as follows:
123.Bl -tag -width indent
124.It Dv M_ZERO
125Causes the allocated memory to be set to all zeros.
126.It Dv M_NODUMP
127For allocations greater than page size, causes the allocated
127For allocations greater than page size, causes the allocated
128memory to be excluded from kernel core dumps.
129.It Dv M_NOWAIT
130Causes
131.Fn malloc ,
132.Fn realloc ,
133and
134.Fn reallocf
135to return

--- 151 unchanged lines hidden ---
128memory to be excluded from kernel core dumps.
129.It Dv M_NOWAIT
130Causes
131.Fn malloc ,
132.Fn realloc ,
133and
134.Fn reallocf
135to return

--- 151 unchanged lines hidden ---