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

Sean Kelly smkelly at FreeBSD.org
Thu Jun 26 02:50:53 PDT 2003


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)


More information about the cvs-all mailing list