summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorNathan Binkert <nate@cvs.openbsd.org>2001-12-14 03:42:17 +0000
committerNathan Binkert <nate@cvs.openbsd.org>2001-12-14 03:42:17 +0000
commit5ad2fe5a3b404e6a640a7beac80eea0fb573edc3 (patch)
tree100838b439cd3935c8462a12974b6cf8d3c012b0 /sys/kern
parent30b83e1ca2681840779f42dc3919e08995d65418 (diff)
New hz value needed by AlphaServer 1200 and a couple other machines
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/kern_clock.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c
index b120e6a8b6b..b8ae3c2f084 100644
--- a/sys/kern/kern_clock.c
+++ b/sys/kern/kern_clock.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_clock.c,v 1.29 2001/11/06 19:53:20 miod Exp $ */
+/* $OpenBSD: kern_clock.c,v 1.30 2001/12/14 03:42:16 nate Exp $ */
/* $NetBSD: kern_clock.c,v 1.34 1996/06/09 04:51:03 briggs Exp $ */
/*-
@@ -360,6 +360,9 @@ initclocks()
case 1024:
shifthz = SHIFT_SCALE - 10;
break;
+ case 1200:
+ shifthz = SHIFT_SCALE - 11;
+ break;
default:
panic("weird hz");
}