This commit is contained in:
Ruslan Ermilov 2005-01-13 09:33:06 +00:00
parent 43295fac79
commit 6b13dcc062
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=140173
7 changed files with 10 additions and 12 deletions

View File

@ -105,7 +105,7 @@ The fields of
.Vt g_class .Vt g_class
should always be initialized using C99-style field naming should always be initialized using C99-style field naming
(see the initialization of (see the initialization of
.Dv example_class .Va example_class
below). below).
.Sh EXAMPLES .Sh EXAMPLES
Example class declaration. Example class declaration.

View File

@ -55,9 +55,7 @@ and
Of course, it can also be called directly, for example in Of course, it can also be called directly, for example in
order to implement dynamic sysctls. order to implement dynamic sysctls.
.Pp .Pp
The arguments to The arguments it expects are:
.Fn DECLARE_MODULE
expects are:
.Bl -tag -width indent .Bl -tag -width indent
.It Fa name .It Fa name
The module name, which will be used in the The module name, which will be used in the

View File

@ -28,7 +28,7 @@
.\" .\"
.\" $FreeBSD$ .\" $FreeBSD$
.\" .\"
.Dd January 7, 2004 .Dd January 7, 2005
.Os .Os
.Dt VFS_START 9 .Dt VFS_START 9
.Sh NAME .Sh NAME
@ -53,7 +53,7 @@ The arguments it expects are:
The file system. The file system.
.It Fa flags .It Fa flags
Flags passed to the Flags passed to the
.Dv vfs_start .Va vfs_start
method of the file system. method of the file system.
.It Fa td .It Fa td
Thread which is starting the file system. Thread which is starting the file system.

View File

@ -52,7 +52,7 @@ The arguments it expects are:
The file system. The file system.
.It Fa sbp .It Fa sbp
A A
.Dt statfs .Vt statfs
structure, as defined by structure, as defined by
.In sys/mount.h , .In sys/mount.h ,
into which information is placed about the file system. into which information is placed about the file system.
@ -61,9 +61,9 @@ The thread which is querying the file system.
.El .El
.Pp .Pp
The fields of The fields of
.Ft "struct statfs" .Vt "struct statfs"
related to the file system are as follows: related to the file system are as follows:
.Bl -tag -width ".Fa f_mntfromname" .Bl -tag -width ".Va f_mntfromname"
.It Va f_type .It Va f_type
Type of file system. Type of file system.
.It Va f_flags .It Va f_flags

View File

@ -28,7 +28,7 @@
.\" .\"
.\" $FreeBSD$ .\" $FreeBSD$
.\" .\"
.Dd January 7, 2004 .Dd January 7, 2005
.Os .Os
.Dt VFS_SYNC 9 .Dt VFS_SYNC 9
.Sh NAME .Sh NAME

View File

@ -28,7 +28,7 @@
.\" .\"
.\" $FreeBSD$ .\" $FreeBSD$
.\" .\"
.Dd January 7, 2004 .Dd January 7, 2005
.Os .Os
.Dt VFS_VGET 9 .Dt VFS_VGET 9
.Sh NAME .Sh NAME

View File

@ -72,7 +72,7 @@ An automatic script collects license information from the tree for
all comments that start in the first column with all comments that start in the first column with
.Dq Li "/*-" . .Dq Li "/*-" .
If you desire to flag If you desire to flag
.Xr indent 1 .Xr indent 1
to not reformat a comment that starts in the first column which is not a to not reformat a comment that starts in the first column which is not a
license or copyright notice, change the dash to a star for those license or copyright notice, change the dash to a star for those
comments. comments.