1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Make panic_reboot_wait_time static.

Submitted by:	jhb
This commit is contained in:
Colin Percival 2013-12-05 03:01:41 +00:00
parent 8d105abc4f
commit 3b251028e2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=258956

View File

@ -89,7 +89,7 @@ __FBSDID("$FreeBSD$");
#ifndef PANIC_REBOOT_WAIT_TIME
#define PANIC_REBOOT_WAIT_TIME 15 /* default to 15 seconds */
#endif
int panic_reboot_wait_time = PANIC_REBOOT_WAIT_TIME;
static int panic_reboot_wait_time = PANIC_REBOOT_WAIT_TIME;
SYSCTL_INT(_kern, OID_AUTO, panic_reboot_wait_time, CTLFLAG_RW | CTLFLAG_TUN,
&panic_reboot_wait_time, 0,
"Seconds to wait before rebooting after a panic");