From owner-freebsd-commit Thu Oct 12 13:40:15 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA27784 for freebsd-commit-outgoing; Thu, 12 Oct 1995 13:40:15 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA27772 for cvs-all-outgoing; Thu, 12 Oct 1995 13:40:10 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA27759 for cvs-sys-outgoing; Thu, 12 Oct 1995 13:40:07 -0700 Received: (from wollman@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA27738 ; Thu, 12 Oct 1995 13:39:52 -0700 Date: Thu, 12 Oct 1995 13:39:52 -0700 From: "Garrett A. Wollman" Message-Id: <199510122039.NAA27738@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa clock.c Sender: owner-commit@FreeBSD.org Precedence: bulk wollman 95/10/12 13:39:51 Modified: sys/kern kern_clock.c Log: Improve clock accuracy by accounting for late/missed clock interrupts if the hardware supports it. Modified: sys/i386/i386 microtime.s sys/i386/include clock.h sys/i386/isa clock.c Log: Reduce jitter of Pentium microtime() implementation by letting the counter free-run and doing a subtract in microtime() rather than resetting the counter to zero at every clock tick. In combination with the changes to kern_clock.c, this should eliminate all the immediately obvious sources of systematic jitter in timekeeping on Pentium machines.