diff options
author | Mark Johnston <markj@FreeBSD.org> | 2015-04-24 03:17:21 +0000 |
---|---|---|
committer | Mark Johnston <markj@FreeBSD.org> | 2015-04-24 03:17:21 +0000 |
commit | da10a603401acf6f9776aa45349353c4bffb045e (patch) | |
tree | e0aa6a2f6ff62ec4633efdd76643ab5c824f4030 /share/man/man9/panic.9 | |
parent | 092b8f61cd2515836c5cc00434f06d2a5764e358 (diff) |
Make vpanic() externally visible so that it can be called as part of the
DTrace panic() action.
Differential Revision: https://reviews.freebsd.org/D2349
Reviewed by: avg
MFC after: 2 weeks
Sponsored by: EMC / Isilon Storage Division
Notes
Notes:
svn path=/head/; revision=281915
Diffstat (limited to 'share/man/man9/panic.9')
-rw-r--r-- | share/man/man9/panic.9 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/share/man/man9/panic.9 b/share/man/man9/panic.9 index 44439dd913b0..c467b86dd5a1 100644 --- a/share/man/man9/panic.9 +++ b/share/man/man9/panic.9 @@ -31,7 +31,7 @@ .\" .\" $FreeBSD$ .\" -.Dd August 11, 1995 +.Dd April 23, 2015 .Dt PANIC 9 .Os .Sh NAME @@ -42,10 +42,14 @@ .In sys/systm.h .Ft void .Fn panic "const char *fmt" ... +.Ft void +.Fn vpanic "const char *fmt" "va_list ap" .Sh DESCRIPTION The .Fn panic -function terminates the running system. +and +.Fn vpanic +functions terminate the running system. The message .Fa fmt is a |