summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Nordin <nordin@cvs.openbsd.org>2002-01-02 06:07:42 +0000
committerThomas Nordin <nordin@cvs.openbsd.org>2002-01-02 06:07:42 +0000
commit3d991d9f3bd78c0dc70f36a903edc402b6ff6a67 (patch)
tree523297163e3dad58202821d1e9700bb903d8e75c
parentb2dff043b037ce218bfb7bd4a8fa632e98c622f7 (diff)
Remove reference to timeout table. deraadt@ ok
-rw-r--r--share/man/man8/crash.87
-rw-r--r--sys/kern/kern_clock.c10
2 files changed, 3 insertions, 14 deletions
diff --git a/share/man/man8/crash.8 b/share/man/man8/crash.8
index cf0f23a0ee0..29b84f3025f 100644
--- a/share/man/man8/crash.8
+++ b/share/man/man8/crash.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: crash.8,v 1.15 2001/12/07 18:25:50 mpech Exp $
+.\" $OpenBSD: crash.8,v 1.16 2002/01/02 06:07:41 nordin Exp $
.\"
.\" Copyright (c) 1980, 1991 The Regents of the University of California.
.\" All rights reserved.
@@ -106,11 +106,6 @@ The root filesystem is incorrect or has been corrupted, or the mode
or type of
.Pa /sbin/init
forbids execution.
-.It timeout table overflow
-.ns
-This really shouldn't be a panic, but until the data structure
-involved is made to be extensible, running out of entries causes a crash.
-If this happens, make the timeout table bigger.
.It trap type %d, code=%x, pc=%x
A unexpected trap has occurred within the system; the trap types are
machine dependent and can be found listed in
diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c
index b8ae3c2f084..0b7dfd3fe9e 100644
--- a/sys/kern/kern_clock.c
+++ b/sys/kern/kern_clock.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_clock.c,v 1.30 2001/12/14 03:42:16 nate Exp $ */
+/* $OpenBSD: kern_clock.c,v 1.31 2002/01/02 06:07:41 nordin Exp $ */
/* $NetBSD: kern_clock.c,v 1.34 1996/06/09 04:51:03 briggs Exp $ */
/*-
@@ -85,12 +85,6 @@
* profhz/stathz for statistics. (For profiling, every tick counts.)
*/
-/*
- * TODO:
- * allocate more timeout table slots when table overflows.
- */
-
-
#ifdef NTP /* NTP phase-locked loop in kernel */
/*
* Phase/frequency-lock loop (PLL/FLL) definitions
@@ -915,7 +909,7 @@ statclock(frame)
* For uncompensated quartz crystal oscillatores and nominal update
* intervals less than 1024 s, operation should be in phase-lock mode
* (STA_FLL = 0), where the loop is disciplined to phase. For update
- * intervals greater than thiss, operation should be in frequency-lock
+ * intervals greater than this, operation should be in frequency-lock
* mode (STA_FLL = 1), where the loop is disciplined to frequency.
*
* Note: splclock() is in effect.