diff options
author | Masao Uebayashi <uebayasi@cvs.openbsd.org> | 2016-03-20 07:56:09 +0000 |
---|---|---|
committer | Masao Uebayashi <uebayasi@cvs.openbsd.org> | 2016-03-20 07:56:09 +0000 |
commit | 5f0fe93df673eb1ba0504840f0d276bcddcea0ad (patch) | |
tree | 5cc818dc9f819f925d600e29f8e04c1d7cd46867 /sys/kern/kern_clock.c | |
parent | ab25a4124faa2de6056bc219bb94044a1c697d89 (diff) |
Update ticks in hardclock().
OK mikeb@
Diffstat (limited to 'sys/kern/kern_clock.c')
-rw-r--r-- | sys/kern/kern_clock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c index adaaab0a73e..c9d596e3769 100644 --- a/sys/kern/kern_clock.c +++ b/sys/kern/kern_clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_clock.c,v 1.88 2015/06/11 16:03:04 mikeb Exp $ */ +/* $OpenBSD: kern_clock.c,v 1.89 2016/03/20 07:56:08 uebayasi Exp $ */ /* $NetBSD: kern_clock.c,v 1.34 1996/06/09 04:51:03 briggs Exp $ */ /*- @@ -191,6 +191,7 @@ hardclock(struct clockframe *frame) return; tc_ticktock(); + ticks++; /* * Update real-time timeout queue. |