svn commit: r213430 - head/sbin/hastd

Pawel Jakub Dawidek pjd at FreeBSD.org
Mon Oct 4 21:44:27 UTC 2010


Author: pjd
Date: Mon Oct  4 21:44:26 2010
New Revision: 213430
URL: http://svn.freebsd.org/changeset/base/213430

Log:
  Decrease report interval to 5 seconds, as this also means we will check for
  signals every 5 seconds and not every 10 seconds as before.
  
  MFC after:	3 days

Modified:
  head/sbin/hastd/hastd.c

Modified: head/sbin/hastd/hastd.c
==============================================================================
--- head/sbin/hastd/hastd.c	Mon Oct  4 21:43:06 2010	(r213429)
+++ head/sbin/hastd/hastd.c	Mon Oct  4 21:44:26 2010	(r213430)
@@ -69,7 +69,7 @@ bool sigexit_received = false;
 struct pidfh *pfh;
 
 /* How often check for hooks running for too long. */
-#define	REPORT_INTERVAL	10
+#define	REPORT_INTERVAL	5
 
 static void
 usage(void)


More information about the svn-src-head mailing list