From: Alan Cox Date: Mon, 22 Dec 2014 12:38:30 +0000 (+0000) Subject: process: note problem to look at wrt ubee and 64 ticks/second X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=73f74619710e9cf9f2bdfeb2bc78d693e7629284;p=FUZIX.git process: note problem to look at wrt ubee and 64 ticks/second --- 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;