diff options
| author | Garrett Wollman <wollman@FreeBSD.org> | 1995-10-12 20:35:01 +0000 |
|---|---|---|
| committer | Garrett Wollman <wollman@FreeBSD.org> | 1995-10-12 20:35:01 +0000 |
| commit | 07e3b0c25b6c5d39f9f040d9db65ab745d9520ad (patch) | |
| tree | a52c7000a9c5f146232d7840b8530b7733a8a732 /sys/kern/kern_timeout.c | |
| parent | 3abc79d2eebd57c05811d313d21065f3cc51b67b (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_timeout.c')
| -rw-r--r-- | sys/kern/kern_timeout.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_timeout.c b/sys/kern/kern_timeout.c index ede7b6d261b6..1b617fadda3f 100644 --- a/sys/kern/kern_timeout.c +++ b/sys/kern/kern_timeout.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_clock.c 8.5 (Berkeley) 1/21/94 - * $Id: kern_clock.c,v 1.15 1995/08/28 09:18:43 julian Exp $ + * $Id: kern_clock.c,v 1.16 1995/09/09 18:10:01 davidg Exp $ */ /* Portions of this software are covered by the following: */ @@ -477,9 +477,9 @@ hardclock(frame) long ltemp; if (timedelta == 0) { - time_update = tick; + time_update = CPU_THISTICKLEN(tick); } else { - time_update = tick + tickdelta; + time_update = CPU_THISTICKLEN(tick) + tickdelta; timedelta -= tickdelta; } BUMPTIME(&mono_time, time_update); |
