Re: Understanding timing and the bottom half handlers

2007-12-17 Thread bbrown
On Mon, 17 Dec 2007 00:40:33 -0500, Berlin Brown wrote > I am looking at a lot of different versions of the kernel source (1.x, > 2.2, and 2.4) as I am trying to understand the kernel as a whole. > In the early versions of the kernel (1.x) > > In the scheduler init; the bottom half timer routine

Re: Understanding timing and the bottom half handlers

2007-12-17 Thread Mulyadi Santosa
Hi... >In > the early versions of the kernel (1.x) > > In the scheduler init; the bottom half timer routine is defined > > bh_base[TIMER_BH].routine = timer_bh; > bh_base[TQUEUE_BH].routine = tqueue_bh; > > In the system_call function, this bottom_half routine is defined: > > handle_bottom_half: >

Understanding timing and the bottom half handlers

2007-12-16 Thread Berlin Brown
I am looking at a lot of different versions of the kernel source (1.x, 2.2, and 2.4) as I am trying to understand the kernel as a whole. In the early versions of the kernel (1.x) In the scheduler init; the bottom half timer routine is defined bh_base[TIMER_BH].routine = timer_bh; bh_base[TQUEUE_