Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 Dec 2013 03:01:41 +0000 (UTC)
From:      Colin Percival <cperciva@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r258956 - head/sys/kern
Message-ID:  <201312050301.rB531fVI016441@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cperciva
Date: Thu Dec  5 03:01:41 2013
New Revision: 258956
URL: http://svnweb.freebsd.org/changeset/base/258956

Log:
  Make panic_reboot_wait_time static.
  
  Submitted by:	jhb

Modified:
  head/sys/kern/kern_shutdown.c

Modified: head/sys/kern/kern_shutdown.c
==============================================================================
--- head/sys/kern/kern_shutdown.c	Thu Dec  5 01:44:24 2013	(r258955)
+++ head/sys/kern/kern_shutdown.c	Thu Dec  5 03:01:41 2013	(r258956)
@@ -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");



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312050301.rB531fVI016441>