From f175569ac2e131ce65ff1d0a0fa5909136767190 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sat, 27 Apr 2002 07:06:52 +0000 Subject: [PATCH] Make the dummy timecounter actually tick or we will never get anyhere. --- sys/kern/kern_tc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/kern_tc.c b/sys/kern/kern_tc.c index e4411594cc35..969393c27040 100644 --- a/sys/kern/kern_tc.c +++ b/sys/kern/kern_tc.c @@ -67,7 +67,7 @@ static struct timehands th3 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th4}; static struct timehands th2 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th3}; static struct timehands th1 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th2}; static struct timehands th0 = - { &dummy_timecounter, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th1}; + { &dummy_timecounter, 0, 18446744073709ULL, 0, {1, 0}, {0, 0}, {0, 0}, 1, &th1}; static struct timehands *volatile timehands = &th0; struct timecounter *timecounter = &dummy_timecounter;