Get rid of the "char *" before level which made no sense.  Change
  "char *msg" to the properly const-unpoisoned one.

Just SPLASSERT.9:
  Add an Xref to CONDSPLASSERT(9).  Change the function name "rtredirect"
  to the correct "rtalloc".
This commit is contained in:
Brian Feldman 2000-03-20 14:44:42 +00:00
parent 929b853066
commit 7e1a7176c3
2 changed files with 4 additions and 3 deletions

View File

@ -36,7 +36,7 @@
.Sh SYNOPSIS
.Cd options INVARIANTS
.Cd options INVARIANT_SUPPORT
.Fn CONDSPLASSERT "condition, char *level, char *msg"
.Fn CONDSPLASSERT "condition, level, const char *msg"
.Sh DESCRIPTION
In a kernel compiled with both "options INVARIANTS"
and "options INVARIANT_SUPPORT",

View File

@ -37,7 +37,7 @@
.Sh SYNOPSIS
.Cd options INVARIANTS
.Cd options INVARIANT_SUPPORT
.Fn SPLASSERT "char *level, char *msg"
.Fn SPLASSERT "level, const char *msg"
.Sh DESCRIPTION
In a kernel compiled with both "options INVARIANTS"
and "options INVARIANT_SUPPORT",
@ -80,7 +80,7 @@ macro is defined to
.Xr panic 9 .
.Sh EXAMPLES
The kernel function
.Fn rtredirect
.Fn rtalloc
must be called at
.Fn splnet :
.Bd -literal -offset indent
@ -95,6 +95,7 @@ rtalloc(ro)
.Pp
.Sh SEE ALSO
.Xr config 8 ,
.Xr CONDSPLASSERT 9 ,
.Xr KASSERT 9 ,
.Xr panic 9
.Sh AUTHORS