From c763b195f9ded032ad96266186250066ff8e0c9b Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 26 Aug 2007 23:39:06 +0000 Subject: [PATCH] Fix timeslice calculation git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@311 42af7a65-404d-4744-a932-0658087f49c3 --- arch/c5471/src/up_unblocktask.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/arch/c5471/src/up_unblocktask.c b/arch/c5471/src/up_unblocktask.c index 0d7f91ca56..b12f8a98cc 100644 --- a/arch/c5471/src/up_unblocktask.c +++ b/arch/c5471/src/up_unblocktask.c @@ -42,6 +42,7 @@ #include #include #include +#include "clock_internal.h" #include "os_internal.h" #include "up_internal.h" @@ -97,11 +98,11 @@ void up_unblock_task(_TCB *tcb) sched_removeblocked(tcb); /* Reset its timeslice. This is only meaningful for round - * robin tasks but it doesn't here to do it for everything + * robin tasks but it doesn't hurt to do it for all tasks */ #if CONFIG_RR_INTERVAL > 0 - tcb->timeslice = CONFIG_RR_INTERVAL / MSEC_PER_SEC; + tcb->timeslice = CONFIG_RR_INTERVAL / MSEC_PER_TICK; #endif /* Add the task in the correct location in the prioritized