From owner-cvs-src@FreeBSD.ORG Thu Jun 26 02:50:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5319737B401; Thu, 26 Jun 2003 02:50:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE8A943FFD; Thu, 26 Jun 2003 02:50:52 -0700 (PDT) (envelope-from smkelly@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5Q9oq0U095574; Thu, 26 Jun 2003 02:50:52 -0700 (PDT) (envelope-from smkelly@repoman.freebsd.org) Received: (from smkelly@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5Q9oq0t095570; Thu, 26 Jun 2003 02:50:52 -0700 (PDT) Message-Id: <200306260950.h5Q9oq0t095570@repoman.freebsd.org> From: Sean Kelly Date: Thu, 26 Jun 2003 02:50:52 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/defaults rc.conf src/etc/rc.d Makefile watchdogd src/share/man/man4 Makefile watchdog.4 src/sys/conf NOTES options src/sys/kern kern_clock.c src/usr.sbin Makefile src/usr.sbin/watchdogd Makefile watchdogd.8 watchdogd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2003 09:50:53 -0000 smkelly 2003/06/26 02:50:52 PDT FreeBSD src repository Modified files: etc/defaults rc.conf etc/rc.d Makefile share/man/man4 Makefile sys/conf NOTES options sys/kern kern_clock.c usr.sbin Makefile Added files: etc/rc.d watchdogd share/man/man4 watchdog.4 usr.sbin/watchdogd Makefile watchdogd.8 watchdogd.c Log: - Add a software watchdog facility. This commit has two pieces. One half is the watchdog kernel code which lives primarily in hardclock() in sys/kern/kern_clock.c. The other half is a userland daemon which, when run, will keep the watchdog from firing while the userland is intact and functioning. Approved by: jeff (mentor) Revision Changes Path 1.180 +1 -0 src/etc/defaults/rc.conf 1.19 +2 -2 src/etc/rc.d/Makefile 1.1 +51 -0 src/etc/rc.d/watchdogd (new) 1.213 +1 -0 src/share/man/man4/Makefile 1.1 +77 -0 src/share/man/man4/watchdog.4 (new) 1.1156 +7 -0 src/sys/conf/NOTES 1.400 +1 -0 src/sys/conf/options 1.161 +82 -0 src/sys/kern/kern_clock.c 1.260 +1 -0 src/usr.sbin/Makefile 1.1 +8 -0 src/usr.sbin/watchdogd/Makefile (new) 1.1 +97 -0 src/usr.sbin/watchdogd/watchdogd.8 (new) 1.1 +232 -0 src/usr.sbin/watchdogd/watchdogd.c (new)