+1 vote
in Linux by
Explain Interrupts in Linux and also explain Interrupt handlers.

1 Answer

0 votes
by

Interrupts means the processor is transferred temporarily to another program or function. When that program is completed, the processor will be given back to that program to complete the task.

Interrupt handler is the function that the kernel runs for a specific interrupt. It is also called Interrupt Service Routine. Interrupts handlers are the function that matches a particular prototype and enables the kernel to pass the handler information accurately.

Related questions

+1 vote
asked Feb 20, 2021 in Linux by SakshiSharma
0 votes
asked Nov 11, 2020 in Linux by sharadyadav1986
...