I have an Arduino Uno (awesome little device!). It has two interrupts; let\'s call them 0 and 1. I attach a handler to interrupt 0 and a differ
The documentation mention that Arduino interrupts have priority:
If your sketch uses multiple ISRs, only one can run at a time. Other interrupts will be executed after the current one finishes in an order that depends on the priority they have.
It also provides a link for additional information:
For more information on interrupts, see Nick Gammon's notes.
According to sections What is interrupt priority? and Can interrupts occur while interrupts are disabled?, we can conclude that:
So, different interrupts will not interrupt each other. They will be executed according to their priority.