Are hardware interrupts and system calls/exceptions dispatched by the same dispatcher procedure in Linux? If you see Linux source, you will notice that hardware interrupts (on x86 arch) on their interrupt vectors doesn't contain more instructions that PUSH interrupt vector number on the stack and JUMP to common_interrupt.Are hardware interrupts and system calls/except