aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2003-09-08 19:57:22 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2003-09-08 19:57:22 +0000
commitfe08efe680f6705e0c60beabe3e39629c655e743 (patch)
treef208c0020248a2800766b91d7bf24e0234629b8b /share/man/man9
parent6ce729e14d938bbc580c6eec5c6defc287ffd298 (diff)
Notes
Diffstat (limited to 'share/man/man9')
-rw-r--r--share/man/man9/BUS_SETUP_INTR.92
-rw-r--r--share/man/man9/SYSCALL_MODULE.92
-rw-r--r--share/man/man9/ifnet.920
-rw-r--r--share/man/man9/ithread.92
-rw-r--r--share/man/man9/ktr.92
-rw-r--r--share/man/man9/lock.92
-rw-r--r--share/man/man9/make_dev.92
-rw-r--r--share/man/man9/malloc.96
-rw-r--r--share/man/man9/pfil.92
-rw-r--r--share/man/man9/rtentry.92
-rw-r--r--share/man/man9/sbuf.92
-rw-r--r--share/man/man9/style.910
-rw-r--r--share/man/man9/swi.92
13 files changed, 28 insertions, 28 deletions
diff --git a/share/man/man9/BUS_SETUP_INTR.9 b/share/man/man9/BUS_SETUP_INTR.9
index 2b39ade6670c..36cf9bb2fc70 100644
--- a/share/man/man9/BUS_SETUP_INTR.9
+++ b/share/man/man9/BUS_SETUP_INTR.9
@@ -54,7 +54,7 @@ method.
The
.Fa flags
are found in
-.Aq Pa sys/bus.h ,
+.In sys/bus.h ,
and give the broad category of interrupt.
The
.Fa flags
diff --git a/share/man/man9/SYSCALL_MODULE.9 b/share/man/man9/SYSCALL_MODULE.9
index b5c87a06dd38..434ea477c507 100644
--- a/share/man/man9/SYSCALL_MODULE.9
+++ b/share/man/man9/SYSCALL_MODULE.9
@@ -60,7 +60,7 @@ syscall is allocated.
.Fa new_sysent
specifies the function implementing the syscall and the number of
arguments this function needs (see
-.Aq Pa sys/sysent.h ) .
+.In sys/sysent.h ) .
.Pp
.Fa evh
is a pointer to the kernel module event handler function with the argument
diff --git a/share/man/man9/ifnet.9 b/share/man/man9/ifnet.9
index e05ead432be2..e68e99ad519c 100644
--- a/share/man/man9/ifnet.9
+++ b/share/man/man9/ifnet.9
@@ -129,14 +129,14 @@ in the
and
.Vt ifmultiaddr
structures in
-.Aq Pa net/if.h
+.In net/if.h
and
-.Aq Pa net/if_var.h
+.In net/if_var.h
and the functions named above and defined in
.Pa /sys/net/if.c .
Those interfaces which are intended to be used by user programs
are defined in
-.Aq Pa net/if.h ;
+.In net/if.h ;
these include the interface flags, the
.Vt if_data
structure, and the structures defining the appearance of
@@ -145,18 +145,18 @@ interface-related messages on the
routing socket and in
.Xr sysctl 3 .
The header file
-.Aq Pa net/if_var.h
+.In net/if_var.h
defines the kernel-internal interfaces, including the
.Vt ifnet , ifaddr ,
and
.Vt ifmultiaddr
structures and the functions which manipulate them.
(A few user programs will need
-.Aq Pa net/if_var.h
+.In net/if_var.h
because it is the prerequisite of some other header file like
-.Aq Pa netinet/if_ether.h .
+.In netinet/if_ether.h .
Most references to those two files in particular can be replaced by
-.Aq Pa net/ethernet.h . )
+.In net/ethernet.h . )
.Pp
The system keeps a linked list of interfaces using the
.Li TAILQ
@@ -352,7 +352,7 @@ Process interface-related
.Xr ioctl 2
requests
(defined in
-.Aq Pa sys/sockio.h ) .
+.In sys/sockio.h ) .
Preliminary processing is done by the generic routine
.Fn ifioctl
to check for appropriate privileges, locate the interface being
@@ -496,7 +496,7 @@ significantly over the course of normal operation:
.It Va ifi_type
.Pq Vt u_char
The type of the interface, as defined in
-.Aq Pa net/if_types.h
+.In net/if_types.h
and described below in the
.Sx "Interface Types"
section.
@@ -603,7 +603,7 @@ for
.El
.Ss Interface Types
The header file
-.Aq Pa net/if_types.h
+.In net/if_types.h
defines symbolic constants for a number of different types of
interfaces.
The most common are:
diff --git a/share/man/man9/ithread.9 b/share/man/man9/ithread.9
index 01c5d813be20..3388453c36d3 100644
--- a/share/man/man9/ithread.9
+++ b/share/man/man9/ithread.9
@@ -142,7 +142,7 @@ priority of the backing kernel thread.
The
.Fa flags
argument can be used to specify properties of this handler as defined in
-.Aq Pa sys/bus.h .
+.In sys/bus.h .
If
.Fa cookiep
is not
diff --git a/share/man/man9/ktr.9 b/share/man/man9/ktr.9
index ecbd35089d1b..c7f8a68191bd 100644
--- a/share/man/man9/ktr.9
+++ b/share/man/man9/ktr.9
@@ -67,7 +67,7 @@ macros.
The first parameter is a mask of event types
.Pq Dv KTR_*
defined in
-.Aq Pa sys/ktr.h .
+.In sys/ktr.h .
The event will be logged only if any of the event types specified in
.Fa mask
are enabled in the global event mask stored in
diff --git a/share/man/man9/lock.9 b/share/man/man9/lock.9
index ebaa5dc672d2..d02a7e266a7a 100644
--- a/share/man/man9/lock.9
+++ b/share/man/man9/lock.9
@@ -151,7 +151,7 @@ Wait for all activity on the lock to end, then mark it decommissioned.
This is used before freeing a lock that is part of a piece of memory that is
about to be freed.
(As documented in
-.Aq Pa sys/lockmgr.h . )
+.In sys/lockmgr.h . )
.It Dv LK_SLEEPFAIL
Fail if operation has slept.
.It Dv LK_NOWAIT
diff --git a/share/man/man9/make_dev.9 b/share/man/man9/make_dev.9
index d819fcd24e63..94edfdf12134 100644
--- a/share/man/man9/make_dev.9
+++ b/share/man/man9/make_dev.9
@@ -61,7 +61,7 @@ and with the name as specified in
The permissions of the file specified in
.Va perms
are defined in
-.Aq Pa sys/stat.h :
+.In sys/stat.h :
.Pp
.Bd -literal -offset indent -compact
#define S_IRWXU 0000700 /* RWX mask for owner */
diff --git a/share/man/man9/malloc.9 b/share/man/man9/malloc.9
index 0cb271abc24e..fea6396dd0d9 100644
--- a/share/man/man9/malloc.9
+++ b/share/man/man9/malloc.9
@@ -226,11 +226,11 @@ MALLOC(buf, struct foo_buf *, sizeof *buf, M_FOOBUF, M_NOWAIT);
In order to use
.Fn MALLOC_DEFINE ,
one must include
-.Aq Pa sys/param.h
+.In sys/param.h
(instead of
-.Aq Pa sys/types.h )
+.In sys/types.h )
and
-.Aq Pa sys/kernel.h .
+.In sys/kernel.h .
.Sh RETURN VALUES
The
.Fn malloc ,
diff --git a/share/man/man9/pfil.9 b/share/man/man9/pfil.9
index 3273d5f4393e..fc1a8dfe5022 100644
--- a/share/man/man9/pfil.9
+++ b/share/man/man9/pfil.9
@@ -132,7 +132,7 @@ interface first appeared in
The
.Nm
input and output lists were originally implemented as
-.Aq Pa sys/queue.h
+.In sys/queue.h
.Dv LIST
structures;
however this was changed in
diff --git a/share/man/man9/rtentry.9 b/share/man/man9/rtentry.9
index 2dc21f98c287..655a28c84eee 100644
--- a/share/man/man9/rtentry.9
+++ b/share/man/man9/rtentry.9
@@ -45,7 +45,7 @@ of a socket in the
.Xr route 4
pseudo-protocol family.
The
-.Aq Pa net/route.h
+.In net/route.h
header file defines the structures and manifest constants used in this
facility.
.Pp
diff --git a/share/man/man9/sbuf.9 b/share/man/man9/sbuf.9
index 1aa53240cadb..84e0d46be732 100644
--- a/share/man/man9/sbuf.9
+++ b/share/man/man9/sbuf.9
@@ -99,7 +99,7 @@ Instead of arrays of characters, these functions operate on structures
called
.Fa sbufs ,
defined in
-.Aq Pa sys/sbuf.h .
+.In sys/sbuf.h .
.Pp
The
.Fn sbuf_new
diff --git a/share/man/man9/style.9 b/share/man/man9/style.9
index 2ce2d2c32516..8791c203d407 100644
--- a/share/man/man9/style.9
+++ b/share/man/man9/style.9
@@ -94,13 +94,13 @@ Leave another blank line before the header files.
Kernel include files (i.e.\&
.Pa sys/*.h )
come first; normally, include
-.Aq Pa sys/types.h
+.In sys/types.h
OR
-.Aq Pa sys/param.h ,
+.In sys/param.h ,
but not both.
-.Aq Pa sys/types.h
+.In sys/types.h
includes
-.Aq Pa sys/cdefs.h ,
+.In sys/cdefs.h ,
and it is okay to depend on that.
.Bd -literal
#include <sys/types.h> /* Non-local includes in angle brackets. */
@@ -128,7 +128,7 @@ which should be sorted alphabetically by name.
.Ed
.Pp
Global pathnames are defined in
-.Aq Pa paths.h .
+.In paths.h .
Pathnames local
to the program go in
.Qq Pa pathnames.h
diff --git a/share/man/man9/swi.9 b/share/man/man9/swi.9
index 2944a401f1be..df016af4f066 100644
--- a/share/man/man9/swi.9
+++ b/share/man/man9/swi.9
@@ -225,4 +225,4 @@ functions which date back to at least
.Sh BUGS
Most of the global variables described in this manual page should not be
global, or at the very least should not be declared in
-.Aq Pa sys/interrupt.h .
+.In sys/interrupt.h .