I'm studying operating systems and I encountered both the terms ISR and interrupt handler. Are they two words for the same mechanism? If not, what is the difference?
Asked
Active
Viewed 7,022 times
3
-
3ISR -> Interrupt service routing. It is same as interrupt handler. – SandBag_1996 Apr 01 '15 at 21:49
3 Answers
6
ISR is callback for a specific service pertaining to a device/operation/source. There could be multiple ISRs present in a system depending on addresses available in Interrupt Vector table. Where is Interrupt handler is a common routine which is triggered whenever any interrupt comes. Its job is to understand the source of the interrupt and trigger appropriate ISR mapped in Interrupt Vector table.

Vinay
- 61
- 1
- 1
0
When interrupt occurs, interrupt handler performs minimal operations required to respond to the device where as updating the buffer and all other operations are taken care by ISR

K ABHIRAM
- 168
- 1
- 8