There is the following stuff in the sched.c
/* move an exhausted RR process to be last.. */
if (!prev->counter && prev->policy == SCHED_RR) {
prev->counter = prev->priority;
move_last_runqueue(prev);
Does " prev->counter = prev->priority " means thatQuote:}
priority is used for time slice ?
Thanks in advance .
- Lee -