aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9/SPLASSERT.9
diff options
context:
space:
mode:
authorBrian Feldman <green@FreeBSD.org>2000-03-20 14:44:42 +0000
committerBrian Feldman <green@FreeBSD.org>2000-03-20 14:44:42 +0000
commit7e1a7176c3dc7befbf3234f5bc5b1178bebbf2ec (patch)
treed2e5b83d5298a6ceaf4752f3c275ebdf95896d0b /share/man/man9/SPLASSERT.9
parent929b8530667176241db753ec4265ede147a757fd (diff)
downloadsrc-7e1a7176c3dc7befbf3234f5bc5b1178bebbf2ec.tar.gz
src-7e1a7176c3dc7befbf3234f5bc5b1178bebbf2ec.zip
Both:
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".
Notes
Notes: svn path=/head/; revision=58380
Diffstat (limited to 'share/man/man9/SPLASSERT.9')
-rw-r--r--share/man/man9/SPLASSERT.95
1 files changed, 3 insertions, 2 deletions
diff --git a/share/man/man9/SPLASSERT.9 b/share/man/man9/SPLASSERT.9
index dd7575951354..b00ccbdb734f 100644
--- a/share/man/man9/SPLASSERT.9
+++ b/share/man/man9/SPLASSERT.9
@@ -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