From e8b6bb6f87c33d22a7d2c37da992532a2446838d Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Fri, 17 Oct 2003 06:25:37 +0000 Subject: [PATCH] 1. Catch up with the move of the declaration of panic() from back to . 2. Remove hard sentence breaks. Reminded by: Stefan Farfeleder (1) --- share/man/man9/panic.9 | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/share/man/man9/panic.9 b/share/man/man9/panic.9 index 44333c3de926..44439dd913b0 100644 --- a/share/man/man9/panic.9 +++ b/share/man/man9/panic.9 @@ -38,17 +38,20 @@ .Nm panic .Nd bring down system on fatal error .Sh SYNOPSIS -.In sys/param.h +.In sys/types.h +.In sys/systm.h .Ft void .Fn panic "const char *fmt" ... .Sh DESCRIPTION The .Fn panic -function terminates the running system. The message +function terminates the running system. +The message .Fa fmt is a .Xr printf 3 -style format string. The message is printed to the console and the location +style format string. +The message is printed to the console and the location .Fa panicstr is set to the address of the message text for retrieval from the OS core dump.