>
> As title, thanks ;-)
Timer interrupt.
-`J'
--
I'm reading LKD2, after knowing how processes are managed, I'm eager
to know that question, thanks.
On 11/1/06, [email protected] <[email protected]> wrote:
> Hi pal,
>
> I think you'd better read some materials on the kernel first. say LKD2.
> Alternatively, you can ask this question elsewhere but not lkml.
>
> Regards,
>
>
>
> 2006/11/1, Xiao Niu <[email protected]>:
> > As title, thanks ;-)
> > -
> > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> > the body of a message to [email protected]
> > More majordomo info at
> http://vger.kernel.org/majordomo-info.html
> > Please read the FAQ at http://www.tux.org/lkml/
> >
>
>
Thanks.
On 11/1/06, Jan Engelhardt <[email protected]> wrote:
> >
> > As title, thanks ;-)
>
> Timer interrupt.
>
>
> -`J'
> --
>
> Thanks.
>
> On 11/1/06, Jan Engelhardt <[email protected]> wrote:
> > >
> > > As title, thanks ;-)
> >
> > Timer interrupt.
Other interrupts too. For example, if a disk I/O operation completes (or a
network packet is received) and generates an interrupt, the kernel could use
that interrupt to switch to another process made ready-to-run by the disk
operation or data received over the network.
Any interrupt can interrupt a user process.
DS