Module Name: src
Committed By: rmind
Date: Mon Aug 3 19:57:40 UTC 2009
Modified Files:
src/share/man/man9: malloc.9 pool_cache.9 sockopt.9
Log Message:
Mention kmem(9).
To generate a diff of this commit:
cvs rdiff -u -r1.46 -r1.47 src/share/man/man9/malloc.9
cvs rdiff -u -r1.7 -r1.8 src/share/man/man9/pool_cache.9
cvs rdiff -u -r1.5 -r1.6 src/share/man/man9/sockopt.9
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/man/man9/malloc.9
diff -u src/share/man/man9/malloc.9:1.46 src/share/man/man9/malloc.9:1.47
--- src/share/man/man9/malloc.9:1.46 Mon Mar 9 17:29:25 2009
+++ src/share/man/man9/malloc.9 Mon Aug 3 19:57:40 2009
@@ -1,4 +1,4 @@
-.\" $NetBSD: malloc.9,v 1.46 2009/03/09 17:29:25 joerg Exp $
+.\" $NetBSD: malloc.9,v 1.47 2009/08/03 19:57:40 rmind Exp $
.\"
.\" Copyright (c) 1996, 2003 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -71,7 +71,7 @@
.Bf -symbolic
These interfaces are being obsoleted and their new use is discouraged.
For new code, use
-.Xr kmem_alloc 9
+.Xr kmem 9
or
.Xr pool_cache 9
instead.
Index: src/share/man/man9/pool_cache.9
diff -u src/share/man/man9/pool_cache.9:1.7 src/share/man/man9/pool_cache.9:1.8
--- src/share/man/man9/pool_cache.9:1.7 Wed Apr 30 13:10:58 2008
+++ src/share/man/man9/pool_cache.9 Mon Aug 3 19:57:40 2009
@@ -1,4 +1,4 @@
-.\" $NetBSD: pool_cache.9,v 1.7 2008/04/30 13:10:58 martin Exp $
+.\" $NetBSD: pool_cache.9,v 1.8 2009/08/03 19:57:40 rmind Exp $
.\"
.\" Copyright (c)2003 YAMAMOTO Takashi,
.\" All rights reserved.
@@ -325,7 +325,6 @@
.Pa sys/kern/subr_pool.c .
.Sh SEE ALSO
.Xr intro 9 ,
-.Xr kmem_alloc 9 ,
-.Xr kmem_free 9 ,
+.Xr kmem 9 ,
.Xr memoryallocators 9 ,
.Xr pool 9
Index: src/share/man/man9/sockopt.9
diff -u src/share/man/man9/sockopt.9:1.5 src/share/man/man9/sockopt.9:1.6
--- src/share/man/man9/sockopt.9:1.5 Tue Oct 28 18:42:54 2008
+++ src/share/man/man9/sockopt.9 Mon Aug 3 19:57:40 2009
@@ -1,4 +1,4 @@
-.\" $NetBSD: sockopt.9,v 1.5 2008/10/28 18:42:54 wiz Exp $
+.\" $NetBSD: sockopt.9,v 1.6 2009/08/03 19:57:40 rmind Exp $
.\"
.\" Copyright (c) 2008 Iain Hibbert
.\" All rights reserved.
@@ -141,7 +141,7 @@
.Pa sys/kern/uipc_socket.c .
.Sh SEE ALSO
.Xr errno 2 ,
-.Xr kmem_alloc 9
+.Xr kmem 9
.Sh HISTORY
The socket options KPI was inspired by a similar KPI in
.Fx