0
What is meant by interrupt driven actual meaning in the Operating system
Can any one explain it briefly https://www.sololearn.com/discuss/2723450/?ref=app
2 ответов
+ 5
There can be several interrupts with different priorities.
The normal execution of the code is interrupted and instead the code is executed by certain interrupt. Afterwards the standard code can be continued (but does not have to).
+ 4
An interrupt is like a signal that must be handled in the code. A bit like an event.