From 73f74619710e9cf9f2bdfeb2bc78d693e7629284 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 22 Dec 2014 12:38:30 +0000 Subject: [PATCH] process: note problem to look at wrt ubee and 64 ticks/second --- Kernel/process.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Kernel/process.c b/Kernel/process.c index ff8f4e3c..ca5efb37 100644 --- a/Kernel/process.c +++ b/Kernel/process.c @@ -330,7 +330,8 @@ void timer_interrupt(void) } ticks++; - /* Do once-per-decisecond things */ + /* Do once-per-decisecond things - this doesn't work out well on + boxes with 64 ticks/second.. need a better approach */ if (++ticks_this_dsecond == TICKSPERSEC / 10) { static ptptr p; -- 2.34.1