2003-04-16 17:34:34 +04:00
|
|
|
.\" $NetBSD: panic.9,v 1.15 2003/04/16 13:35:31 wiz Exp $
|
1996-10-09 21:20:04 +04:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 1996 Michael Graff.
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\" 3. All advertising materials mentioning features or use of this software
|
|
|
|
.\" must display the following acknowledgement:
|
|
|
|
.\" This product includes software developed by Michael Graff
|
|
|
|
.\" for the NetBSD Project.
|
1999-03-07 01:09:29 +03:00
|
|
|
.\" 4. The name of the author may not be used to endorse or promote products
|
1996-10-09 21:20:04 +04:00
|
|
|
.\" derived from this software without specific prior written permission
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.\"
|
2002-09-27 19:53:33 +04:00
|
|
|
.Dd September 27, 2002
|
1996-08-11 03:14:11 +04:00
|
|
|
.Dt PANIC 9
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm panic
|
|
|
|
.Nd Bring down system on fatal error
|
|
|
|
.Sh SYNOPSIS
|
2003-04-16 17:34:34 +04:00
|
|
|
.In sys/types.h
|
|
|
|
.In sys/systm.h
|
1996-08-11 03:14:11 +04:00
|
|
|
.Ft void
|
2002-08-06 17:02:52 +04:00
|
|
|
.Fn panic "const char *fmt" "..."
|
1996-08-11 03:14:11 +04:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Fn panic
|
1998-02-06 08:54:12 +03:00
|
|
|
function terminates the
|
|
|
|
.Nx
|
1998-09-03 05:05:03 +04:00
|
|
|
system.
|
|
|
|
The message
|
1996-08-11 03:14:11 +04:00
|
|
|
.Fa fmt
|
|
|
|
is a
|
|
|
|
.Xr printf 3
|
1998-09-03 05:05:03 +04:00
|
|
|
style format string which is printed to the console and saved in the
|
|
|
|
variable
|
2001-09-04 06:51:15 +04:00
|
|
|
.Va panicstr
|
2000-05-27 00:25:57 +04:00
|
|
|
for later retrieval via core dump inspection.
|
2002-09-27 19:53:33 +04:00
|
|
|
A newline character is added at the end automatically, and is thus
|
|
|
|
not needed in the format string.
|
1996-08-11 03:14:11 +04:00
|
|
|
.Pp
|
1998-09-03 05:05:03 +04:00
|
|
|
If a kernel debugger is installed, control is passed to it after the
|
2002-09-27 19:53:33 +04:00
|
|
|
message is printed.
|
|
|
|
If the kernel debugger is
|
2000-05-27 00:25:57 +04:00
|
|
|
.Xr ddb 4 ,
|
|
|
|
control is only passed if the value of the
|
|
|
|
.Em ddb.onpanic
|
|
|
|
.Xr sysctl 3
|
|
|
|
is
|
|
|
|
.Dq 1 ,
|
|
|
|
otherwise, a
|
2002-09-27 19:53:33 +04:00
|
|
|
.Xr ddb 4 Ns -specific
|
2000-05-27 00:25:57 +04:00
|
|
|
function is used to print the kernel stack trace, and then control returns
|
|
|
|
to
|
|
|
|
.Fn panic .
|
|
|
|
.Pp
|
|
|
|
If control remains in
|
|
|
|
.Fn panic ,
|
|
|
|
an attempt is made to save an image of system memory on the
|
2001-12-04 22:56:55 +03:00
|
|
|
configured dump device.
|
1996-08-11 03:14:11 +04:00
|
|
|
.Pp
|
1998-09-03 05:05:03 +04:00
|
|
|
If during the process of handling the panic,
|
1996-08-11 03:14:11 +04:00
|
|
|
.Fn panic
|
1998-09-03 05:05:03 +04:00
|
|
|
is called again
|
2002-09-27 19:53:33 +04:00
|
|
|
.Pq from the filesystem synchronization routines, for example ,
|
1998-09-03 05:05:03 +04:00
|
|
|
the system is rebooted immediately without synchronizing any filesystems.
|
1996-08-11 03:14:11 +04:00
|
|
|
.Sh RETURN VALUES
|
|
|
|
The
|
|
|
|
.Fn panic
|
|
|
|
function does not return.
|
1998-09-03 05:05:03 +04:00
|
|
|
.Sh SEE ALSO
|
2000-05-27 00:25:57 +04:00
|
|
|
.Xr sysctl 3 ,
|
|
|
|
.Xr ddb 4 ,
|
|
|
|
.Xr ipkdb 4 ,
|
1998-09-03 05:05:03 +04:00
|
|
|
.Xr options 4 ,
|
2000-05-27 00:25:57 +04:00
|
|
|
.Xr savecore 8 ,
|
2001-12-05 02:16:15 +03:00
|
|
|
.Xr swapctl 8 ,
|
|
|
|
.Xr sysctl 8
|