Trim trailing whitespace.

This commit is contained in:
Jeroen Ruigrok van der Werven 2000-03-19 15:55:38 +00:00
parent 6a6a8532b0
commit cd8b737d3c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=58302
2 changed files with 10 additions and 10 deletions

View File

@ -40,7 +40,7 @@
.Sh DESCRIPTION
In a kernel compiled with both "options INVARIANTS"
and "options INVARIANT_SUPPORT",
the
the
.Fn CONDSPLASSERT
macro compares the current spl level of the kernel with the spl
.Ar level
@ -51,7 +51,7 @@ If the specified
.Ar level
is not active
.Fn CONDSPLASSERT
calls the
calls the
.Fn KASSERT
macro with the
.Ar msg,
@ -59,9 +59,9 @@ terminating the running system.
.Pp
In a kernel that does not have both "options INVARIANTS"
and "options INVARIANT_SUPPORT",
the
the
.Fn CONDSPLASSERT
macro is defined to be a no-op.
macro is defined to be a no-op.
.Pp
The behaviour of
.Fn CONDSPLASSERT
@ -102,6 +102,6 @@ This man page was written by
.An Jeroen Ruigrok van der Werven
.Aq asmodai@freebsd.org ,
based on the
.Xr SPLASSERT 9
.Xr SPLASSERT 9
manpage by Jonathan M. Bresler
.Aq jmb@freebsd.org .

View File

@ -41,7 +41,7 @@
.Sh DESCRIPTION
In a kernel compiled with both "options INVARIANTS"
and "options INVARIANT_SUPPORT",
the
the
.Fn SPLASSERT
macro compares the current spl level of the kernel with the spl
.Ar level
@ -51,7 +51,7 @@ If the specified
.Ar level
is not active
.Fn SPLASSERT
calls the
calls the
.Fn KASSERT
macro with the
.Ar msg,
@ -59,9 +59,9 @@ terminating the running system.
.Pp
In a kernel that does not have both "options INVARIANTS"
and "options INVARIANT_SUPPORT",
the
the
.Fn SPLASSERT
macro is defined to be a no-op.
macro is defined to be a no-op.
.Pp
The behaviour of
.Fn SPLASSERT
@ -96,7 +96,7 @@ rtalloc(ro)
.Sh SEE ALSO
.Xr config 8 ,
.Xr KASSERT 9 ,
.Xr panic 9
.Xr panic 9
.Sh AUTHORS
This man page was written by
.An Jonathan M. Bresler