summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_tc.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1998-04-05 11:49:36 +0000
committerphk <phk@FreeBSD.org>1998-04-05 11:49:36 +0000
commitef09a47a6d48854c30a7d9923b608ec89b6a4980 (patch)
tree40c6f284ce6a23b633c9b5c48e7b30d3b943455e /sys/kern/kern_tc.c
parent0a735b082983008f24ff06773efbd285533ce93a (diff)
downloadFreeBSD-src-ef09a47a6d48854c30a7d9923b608ec89b6a4980.zip
FreeBSD-src-ef09a47a6d48854c30a7d9923b608ec89b6a4980.tar.gz
Make the dummy timecounter run at 1 MHz rather than 100kHz (noticed by bde)
fix the itimer(REAL) handling.
Diffstat (limited to 'sys/kern/kern_tc.c')
-rw-r--r--sys/kern/kern_tc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_tc.c b/sys/kern/kern_tc.c
index 72e1845..a22da2b 100644
--- a/sys/kern/kern_tc.c
+++ b/sys/kern/kern_tc.c
@@ -39,7 +39,7 @@ static volatile int print_tci = 1;
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
- * $Id: kern_clock.c,v 1.63 1998/04/04 13:25:11 phk Exp $
+ * $Id: kern_clock.c,v 1.64 1998/04/04 18:46:09 phk Exp $
*/
#include <sys/param.h>
@@ -823,7 +823,7 @@ static struct timecounter dummy_timecounter[3] = {
0,
dummy_get_timecount,
~0,
- 100000,
+ 1000000,
"dummy"
}
};
OpenPOWER on IntegriCloud