Re: short explanation -jiffies (newbie)

From: Jesper Juhl
Date: Thu Oct 16 2003 - 16:04:51 EST



On Thu, 16 Oct 2003, sting sting wrote:

> Hello,
> can someone give a short explanation what jiffies are?

A short explanation :

"Basic packet of kernel time, around 10ms on x86. Related to HZ, the basic
resolution of the operating system. The timer interrupt is raised each
10ms, which then performs some h/w timer related stuff, and marks a couple
of bh's ready to run if applicable."

is given at :

http://www.kernelnewbies.org/glossary/#J

For more details you could take a look at these files (there are more) in
the kernel source :

include/linux/delay.h
init/main.c

to find more relevant files try something like this in the kernel source
tree :

for i in `find -name *.[ch]`; do grep -H jiffy $i; done



Kind regards,

Jesper Juhl
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/