Use standard section headers.

This commit is contained in:
jruoho 2010-05-14 18:52:46 +00:00
parent 3148417211
commit 6234ed1429
5 changed files with 15 additions and 15 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: bus_dma.9,v 1.52 2010/04/14 13:05:43 wiz Exp $
.\" $NetBSD: bus_dma.9,v 1.53 2010/05/14 18:52:46 jruoho Exp $
.\"
.\" Copyright (c) 1996, 1997, 1998, 2001, 2005, 2006 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -28,7 +28,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd April 14, 2010
.Dd May 14, 2010
.Dt BUS_DMA 9
.Os
.Sh NAME
@ -94,7 +94,7 @@
.Fn bus_dmatag_destroy "bus_dma_tag_t tag"
.Sh DESCRIPTION
Provide a bus- and machine-independent "DMA mapping interface."
.Sh NOTES
.Sh IMPLEMENTATION NOTES
All data structures, function prototypes, and macros will be defined
by the port-specific header
.In machine/bus.h .

View File

@ -1,4 +1,4 @@
.\" $NetBSD: kmem.9,v 1.8 2010/04/23 16:24:04 rmind Exp $
.\" $NetBSD: kmem.9,v 1.9 2010/05/14 18:52:46 jruoho Exp $
.\"
.\" Copyright (c)2006 YAMAMOTO Takashi,
.\" All rights reserved.
@ -25,7 +25,7 @@
.\" SUCH DAMAGE.
.\"
.\" ------------------------------------------------------------
.Dd April 23, 2010
.Dd May 14, 2010
.Dt KMEM 9
.Os
.\" ------------------------------------------------------------
@ -136,7 +136,7 @@ Freeing
.Dv NULL
is illegal.
.\" ------------------------------------------------------------
.Sh NOTES
.Sh IMPLEMENTATION NOTES
Making
.Dv KM_SLEEP
allocations while holding mutexes or reader/writer locks is discouraged, as the

View File

@ -1,4 +1,4 @@
.\" $NetBSD: pmc.9,v 1.10 2010/03/22 18:58:33 joerg Exp $
.\" $NetBSD: pmc.9,v 1.11 2010/05/14 18:52:46 jruoho Exp $
.\"
.\" Copyright (c) 2002, 2005 Wasabi Systems, Inc.
.\" All rights reserved.
@ -33,7 +33,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd December 20, 2005
.Dd May 14, 2010
.Dt PMC 9
.Os
.Sh NAME
@ -106,7 +106,7 @@ interface is intended to allow monitoring from within the kernel as well
as monitoring of userland applications.
If the hardware can interrupt the CPU in a specific implementation,
then it may also be used as a profiling source instead of the clock.
.Sh NOTES
.Sh IMPLEMENTATION NOTES
All function calls in this interface may be defined as
.Xr cpp 1
macros.

View File

@ -1,4 +1,4 @@
.\" $NetBSD: sysctl.9,v 1.15 2010/04/11 06:50:30 jruoho Exp $
.\" $NetBSD: sysctl.9,v 1.16 2010/05/14 18:52:46 jruoho Exp $
.\"
.\" Copyright (c) 2004 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -27,7 +27,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd April 11, 2010
.Dd May 14, 2010
.Dt SYSCTL 9
.Os
.Sh NAME
@ -613,7 +613,7 @@ and
.Fa oldp
are interpreted as kernel addresses, and access is performed as for
the superuser.
.Sh NOTES
.Sh IMPLEMENTATION NOTES
It is expected that nodes will be added to (or removed from) the tree
during the following stages of a machine's lifetime:
.Pp

View File

@ -1,4 +1,4 @@
.\" $NetBSD: xcall.9,v 1.4 2010/01/23 10:36:42 wiz Exp $
.\" $NetBSD: xcall.9,v 1.5 2010/05/14 18:52:46 jruoho Exp $
.\"
.\" Copyright (c) 2010 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -27,7 +27,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd January 23, 2010
.Dd May 14, 2010
.Dt XCALL 9
.Os
.Sh NAME
@ -81,7 +81,7 @@ context, and not from a software interrupt, so it can ensure that it is
not interrupting other code running on the CPU, and so has exclusive
access to the CPU.
Keep in mind that unless disabled, it may cause a kernel preemption.
.Sh NOTES
.Sh IMPLEMENTATION NOTES
Functions being called should be relatively lightweight.
They may block on locks, but carefully and minimally, to not interfere
with other cross calls in the system.