diff options
author | 2001-12-14 03:42:16 +0000 | |
---|---|---|
committer | 2001-12-14 03:42:16 +0000 | |
commit | 0114c2c53476ebf5229cecd60b5f96bcc9da008e (patch) | |
tree | a4d701d23a8f33e6e985d49ed373e53f8693c943 /sys/kern/kern_clock.c | |
parent | Workaround a compiler bug on m68k. (diff) | |
download | wireguard-openbsd-0114c2c53476ebf5229cecd60b5f96bcc9da008e.tar.xz wireguard-openbsd-0114c2c53476ebf5229cecd60b5f96bcc9da008e.zip |
New hz value needed by AlphaServer 1200 and a couple other machines
Diffstat (limited to 'sys/kern/kern_clock.c')
-rw-r--r-- | sys/kern/kern_clock.c | 5 |
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"); } |