[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Does the scheduler run every time jiffies is incremented?
[please remove linux-kernel from the CC and move it to the
more appropriate kernelnewbies list]
On 22 Apr 2001, Francis Litterio wrote:
> I'm reading Rubini's "Linux Device Drivers" and it isn't clear to me
> whether the scheduler runs every time the timer interrupt increments
> jiffies or less frequently.
>
> Does the scheduler run every time jiffies is incremented?
No. Every timer interrupt a bunch of functions in
kernel/timer.c is run, amongst them the following lines
of code (from update_process_times):
if (--p->counter <= 0) {
p->counter = 0;
p->need_resched = 1;
}
As you can see, we will only reschedule when the time slice
of the currently running process is over.
regards,
Rik
--
Virtual memory is like a game you can't win;
However, without VM there's truly nothing to lose...
http://www.surriel.com/
http://www.conectiva.com/ http://distro.conectiva.com.br/
-
Kernelnewbies: Help each other learn about the Linux kernel.
Archive: http://mail.nl.linux.org/
IRC Channel: irc.openprojects.net / #kernelnewbies
Web Page: http://www.kernelnewbies.org/